Files
sx-fc/db/migrate/20170402083337_create_menu_item_attributes.rb
2017-10-23 11:38:10 +06:30

12 lines
281 B
Ruby
Executable File

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