Sha256: 141e3ba36f52eb625541163053bf154575c432b679c8719602f5740f41aa6ab5

Contents?: true

Size: 257 Bytes

Versions: 4

Compression:

Stored size: 257 Bytes

Contents

class CreateComableOptionTypes < ActiveRecord::Migration
  def change
    create_table :comable_option_types do |t|
      t.string :name, null: false
      t.timestamps null: false
    end

    add_index :comable_option_types, :name, unique: true
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
comable-core-0.7.1 db/migrate/20150823072622_create_comable_option_types.rb
comable-core-0.7.0 db/migrate/20150823072622_create_comable_option_types.rb
comable-core-0.7.0.beta2 db/migrate/20150823072622_create_comable_option_types.rb
comable-core-0.7.0.beta1 db/migrate/20150823072622_create_comable_option_types.rb