mirror of
https://github.com/Retrospring/retrospring.git
synced 2025-02-12 21:03:37 +01:00
11 lines
232 B
Ruby
11 lines
232 B
Ruby
|
class CreateSubscriptions < ActiveRecord::Migration
|
||
|
def change
|
||
|
create_table :subscriptions do |t|
|
||
|
t.integer :user_id, null: false
|
||
|
t.integer :answer_id, null: false
|
||
|
|
||
|
t.timestamps null: false
|
||
|
end
|
||
|
end
|
||
|
end
|