osem-fcy/db/migrate/20121223115117_create_rooms_table.rb

17 lines
338 B
Ruby

# frozen_string_literal: true
class CreateRoomsTable < ActiveRecord::Migration
def up
create_table :rooms do |t|
t.string :guid, null: false
t.references :conference
t.string :name, null: false
t.integer :size
t.boolean :public, default: true
end
end
def down
drop_table :rooms
end
end