summaryrefslogtreecommitdiff
path: root/db/migrate/20160610140403_remove_notification_setting_not_null_constraints.rb
diff options
context:
space:
mode:
Diffstat (limited to 'db/migrate/20160610140403_remove_notification_setting_not_null_constraints.rb')
-rw-r--r--db/migrate/20160610140403_remove_notification_setting_not_null_constraints.rb11
1 files changed, 11 insertions, 0 deletions
diff --git a/db/migrate/20160610140403_remove_notification_setting_not_null_constraints.rb b/db/migrate/20160610140403_remove_notification_setting_not_null_constraints.rb
new file mode 100644
index 00000000000..259abb08e47
--- /dev/null
+++ b/db/migrate/20160610140403_remove_notification_setting_not_null_constraints.rb
@@ -0,0 +1,11 @@
+class RemoveNotificationSettingNotNullConstraints < ActiveRecord::Migration
+ def up
+ change_column :notification_settings, :source_type, :string, null: true
+ change_column :notification_settings, :source_id, :integer, null: true
+ end
+
+ def down
+ change_column :notification_settings, :source_type, :string, null: false
+ change_column :notification_settings, :source_id, :integer, null: false
+ end
+end