2018-05-07 16:47:29 -07:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
2014-07-24 21:13:03 +05:30
|
|
|
class CreateSubscriptions < ActiveRecord::Migration
|
|
|
|
|
def change
|
|
|
|
|
create_table :subscriptions do |t|
|
|
|
|
|
t.belongs_to :user
|
|
|
|
|
t.belongs_to :conference
|
|
|
|
|
t.timestamps
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
end
|