Sha256: a6379f12673df1db6dc40c03922890c37cc25a88c1d6d0f433181c85ad1b4182
Contents?: true
Size: 353 Bytes
Versions: 1
Compression:
Stored size: 353 Bytes
Contents
class CreateChosenFurnitures < ActiveRecord::Migration[4.2] def change create_table :chosen_furnitures do |t| t.references :chosen_room, index: true, foreign_key: true t.references :furniture, index: true, foreign_key: true t.string :code t.timestamps null: false end add_index :chosen_furnitures, :code end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
mobilart_models-1.2.14 | db/migrate/20150827084745_create_chosen_furnitures.rb |