Sha256: 843473f500b39b5431d07ef0731177a657e86626dfd991f85c2a02d30a0dd408
Contents?: true
Size: 583 Bytes
Versions: 38
Compression:
Stored size: 583 Bytes
Contents
class CreatePlaces < ActiveRecord::Migration def change create_table :places, options: 'DEFAULT CHARSET=utf8' do |t| t.string :name, null: false t.string :city t.string :state_or_province t.string :country, null: false, default: "US" t.string :type, null: false t.text :description t.timestamps end add_index :places, :name add_index :places, :city add_index :places, :state_or_province add_index :places, :country add_index :places, :type add_index :places, [:name, :state_or_province, :country] end end
Version data entries
38 entries across 38 versions & 1 rubygems