Sha256: fb00e5a77f270384f290da33b51bec82ad02cb1e5794ebb6383a18af1cc27c0b

Contents?: true

Size: 344 Bytes

Versions: 35

Compression:

Stored size: 344 Bytes

Contents

class CreateLocations < ActiveRecord::Migration
  def change
    create_table :locations do |t|
      t.string :name, null: false
      t.string :kind
      t.integer :parent_location_id, index: true, foreign_key: false

      t.timestamps null: false
    end
    add_index :locations, [:parent_location_id,:kind,:name], unique: true
  end
end

Version data entries

35 entries across 35 versions & 2 rubygems

Version Path
introspective_grape-0.6.1 spec/dummy/db/migrate/20150601200526_create_locations.rb
introspective_grape-0.5.7 spec/dummy/db/migrate/20150601200526_create_locations.rb
introspective_grape-0.5.6 spec/dummy/db/migrate/20150601200526_create_locations.rb
introspective_grape-0.5.5 spec/dummy/db/migrate/20150601200526_create_locations.rb
introspective_grape-0.5.4 spec/dummy/db/migrate/20150601200526_create_locations.rb
introspective_grape-0.5.2 spec/dummy/db/migrate/20150601200526_create_locations.rb
introspective_grape-0.5.0 spec/dummy/db/migrate/20150601200526_create_locations.rb
introspective_grape-0.4.3 spec/dummy/db/migrate/20150601200526_create_locations.rb
introspective_grape-0.4.2 spec/dummy/db/migrate/20150601200526_create_locations.rb
introspective_grape-0.4.1 spec/dummy/db/migrate/20150601200526_create_locations.rb
introspective_grape-0.4.0 spec/dummy/db/migrate/20150601200526_create_locations.rb
introspective_grape-0.3.9 spec/dummy/db/migrate/20150601200526_create_locations.rb
introspective_grape-0.3.7 spec/dummy/db/migrate/20150601200526_create_locations.rb
introspective_grape-0.3.6 spec/dummy/db/migrate/20150601200526_create_locations.rb
introspective_grape-0.3.5 spec/dummy/db/migrate/20150601200526_create_locations.rb
introspective_grape-0.3.3 spec/dummy/db/migrate/20150601200526_create_locations.rb
introspective_grape-0.3.2 spec/dummy/db/migrate/20150601200526_create_locations.rb
introspective_grape-0.3.1 spec/dummy/db/migrate/20150601200526_create_locations.rb
introspective_grape-0.3.0 spec/dummy/db/migrate/20150601200526_create_locations.rb
introspective_grape-0.2.9 spec/dummy/db/migrate/20150601200526_create_locations.rb