summaryrefslogtreecommitdiff
path: root/db/migrate/20150313012111_create_subscriptions_table.rb
diff options
context:
space:
mode:
authorRémy Coutable <remy@rymai.me>2016-11-28 16:45:08 +0100
committerRémy Coutable <remy@rymai.me>2016-11-28 16:45:08 +0100
commitc33b489853eb025c4d2d9c4a79630109ddf55e14 (patch)
tree6640d889e27b3736f614aa642bbce27cad709e62 /db/migrate/20150313012111_create_subscriptions_table.rb
parente6d31ce31ff9d408503ea7b0ba1e6faad7cd5290 (diff)
downloadgitlab-ce-c33b489853eb025c4d2d9c4a79630109ddf55e14.tar.gz
Add `null: true` to timestamps in migrations that does not define it23666-set-null-true-for-timestamps-columns-in-migrations
This is to ensure that migrations will still be consitent when we will upgrade to Rails 5 which default to `null: false` for timestamps columns. Fixes #23666. Signed-off-by: Rémy Coutable <remy@rymai.me>
Diffstat (limited to 'db/migrate/20150313012111_create_subscriptions_table.rb')
-rw-r--r--db/migrate/20150313012111_create_subscriptions_table.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/db/migrate/20150313012111_create_subscriptions_table.rb b/db/migrate/20150313012111_create_subscriptions_table.rb
index 8adb193b27f..0977c9adfec 100644
--- a/db/migrate/20150313012111_create_subscriptions_table.rb
+++ b/db/migrate/20150313012111_create_subscriptions_table.rb
@@ -6,7 +6,7 @@ class CreateSubscriptionsTable < ActiveRecord::Migration
t.references :subscribable, polymorphic: true
t.boolean :subscribed
- t.timestamps
+ t.timestamps null: true
end
add_index :subscriptions,