aboutsummaryrefslogtreecommitdiffstats
path: root/db
diff options
context:
space:
mode:
authorLouise Crow <louise.crow@gmail.com>2012-10-17 14:55:55 +0100
committerLouise Crow <louise.crow@gmail.com>2012-10-17 14:55:55 +0100
commite6dc0f6606b26e13cb0cd16124fdb2aad3c1b5a6 (patch)
treec376463aedff99886779eebf1da1ac5eb9da8370 /db
parent6f804977c8dc790777af220f821bccb8a04e1be3 (diff)
Revert "Revert "Merge remote-tracking branch 'henare_github/patch-1'""
This reverts commit 211fe84dc40d97df8aa8724906d9170ed4f78477.
Diffstat (limited to 'db')
-rw-r--r--db/migrate/20120919140404_add_comments_allowed_to_info_request.rb9
1 files changed, 9 insertions, 0 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
new file mode 100644
index 000000000..4ae0bce18
--- /dev/null
+++ b/db/migrate/20120919140404_add_comments_allowed_to_info_request.rb
@@ -0,0 +1,9 @@
+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