mirror of
https://github.com/openSUSE/osem.git
synced 2026-08-13 19:54:02 +00:00
9 lines
197 B
Ruby
9 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
|