diff options
Diffstat (limited to 'db')
-rw-r--r-- | db/migrate/20120919140404_add_comments_allowed_to_info_request.rb | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/db/migrate/20120919140404_add_comments_allowed_to_info_request.rb b/db/migrate/20120919140404_add_comments_allowed_to_info_request.rb deleted file mode 100644 index 4ae0bce18..000000000 --- a/db/migrate/20120919140404_add_comments_allowed_to_info_request.rb +++ /dev/null @@ -1,9 +0,0 @@ -class AddCommentsAllowedToInfoRequest < ActiveRecord::Migration - def self.up - add_column :info_requests, :comments_allowed, :boolean, :null => false, :default => true - end - - def self.down - remove_column :info_requests, :comments_allowed - end -end |