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

12 lines
281 B
Ruby

class CreateMenuItemAttributes < ActiveRecord::Migration[5.1]
def change
create_table :menu_item_attributes do |t|
t.string :attribute_type, :null => false
t.string :name, :null => false
t.string :value, :null => false
t.timestamps
end
end
end