gitlab-org--gitlab-foss/db/migrate/20150313012111_create_subscriptions_table.rb
Rémy Coutable a59e75a17f
Make the downtime_check task happy
Signed-off-by: Rémy Coutable <remy@rymai.me>
2016-11-30 16:15:02 +01:00

19 lines
487 B
Ruby

# rubocop:disable all
class CreateSubscriptionsTable < ActiveRecord::Migration
DOWNTIME = false
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