debian-mirror-gitlab/db/migrate/20150313012111_create_subscriptions_table.rb

20 lines
487 B
Ruby
Raw Normal View History

# rubocop:disable all
2015-04-26 12:48:37 +05:30
class CreateSubscriptionsTable < ActiveRecord::Migration
2017-01-15 13:20:01 +05:30
DOWNTIME = false
2015-04-26 12:48:37 +05:30
def change
create_table :subscriptions do |t|
t.integer :user_id
t.references :subscribable, polymorphic: true
t.boolean :subscribed
2017-01-15 13:20:01 +05:30
2017-08-17 22:00:37 +05:30
t.timestamps null: true
2015-04-26 12:48:37 +05:30
end
2017-01-15 13:20:01 +05:30
add_index :subscriptions,
2015-04-26 12:48:37 +05:30
[:subscribable_id, :subscribable_type, :user_id],
unique: true,
name: 'subscriptions_user_id_and_ref_fields'
end
end