Class: CreateRooms

Inherits:
ActiveRecord::Migration
  • Object
show all
Defined in:
lib/generators/reso/templates/create_rooms.rb

Instance Method Summary collapse

Instance Method Details

#changeObject



2
3
4
5
6
7
8
9
# File 'lib/generators/reso/templates/create_rooms.rb', line 2

def change
  create_table :rooms, options: 'DEFAULT CHARSET=utf8' do |t|
    t.references :room_category, index: true
    t.references :listing, index: true, foreign_key: true

    t.timestamps
  end
end