Files
sx-fc/db/migrate/20170403174309_create_lookups.rb
2017-04-04 00:15:41 +06:30

10 lines
234 B
Ruby

class CreateLookups < ActiveRecord::Migration[5.0]
def change
create_table :lookups do |t|
t.string :lookup_type, :null => false
t.string :name, :null => false
t.string :value, :null => false
end
end
end