Files
sx-fc/db/migrate/20170403174309_create_lookups.rb
2017-06-07 18:47:50 +06:30

10 lines
234 B
Ruby

class CreateLookups < ActiveRecord::Migration[5.1]
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