mirror of
https://github.com/openSUSE/osem.git
synced 2026-08-14 20:24:03 +00:00
10 lines
197 B
Ruby
10 lines
197 B
Ruby
|
|
class CreateSubscriptions < ActiveRecord::Migration
|
||
|
|
def change
|
||
|
|
create_table :subscriptions do |t|
|
||
|
|
t.belongs_to :user
|
||
|
|
t.belongs_to :conference
|
||
|
|
t.timestamps
|
||
|
|
end
|
||
|
|
end
|
||
|
|
end
|