appirits/comable

View on GitHub
core/db/migrate/20150823072622_create_comable_option_types.rb

Summary

Maintainability
A
0 mins
Test Coverage
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