Class: CreateProperties

Inherits:
ActiveRecord::Migration
  • Object
show all
Defined in:
lib/generators/coalla/cms/market/templates/migrations/create_properties.rb

Instance Method Summary collapse

Instance Method Details

#changeObject



3
4
5
6
7
8
9
# File 'lib/generators/coalla/cms/market/templates/migrations/create_properties.rb', line 3

def change
  create_table :market_properties do |t|
    t.text :name
    t.index :name
    t.timestamps
  end
end