c33b489853
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>
17 lines
474 B
Ruby
17 lines
474 B
Ruby
# rubocop:disable all
|
|
class CreateSubscriptionsTable < ActiveRecord::Migration
|
|
def change
|
|
create_table :subscriptions do |t|
|
|
t.integer :user_id
|
|
t.references :subscribable, polymorphic: true
|
|
t.boolean :subscribed
|
|
|
|
t.timestamps null: true
|
|
end
|
|
|
|
add_index :subscriptions,
|
|
[:subscribable_id, :subscribable_type, :user_id],
|
|
unique: true,
|
|
name: 'subscriptions_user_id_and_ref_fields'
|
|
end
|
|
end
|