forked from External/greenlight
initial commit
This commit is contained in:
11
db/migrate/20180504131713_create_meetings.rb
Normal file
11
db/migrate/20180504131713_create_meetings.rb
Normal file
@@ -0,0 +1,11 @@
|
||||
class CreateMeetings < ActiveRecord::Migration[5.0]
|
||||
def change
|
||||
create_table :meetings do |t|
|
||||
t.belongs_to :room, index: true
|
||||
t.string :name, null: false
|
||||
t.string :uid, index: true
|
||||
|
||||
t.timestamps
|
||||
end
|
||||
end
|
||||
end
|
||||
Reference in New Issue
Block a user