12 lines
256 B
Ruby
Executable File
12 lines
256 B
Ruby
Executable File
class CreateMenuItemOptions < ActiveRecord::Migration[5.1]
|
|
def change
|
|
create_table :menu_item_options do |t|
|
|
t.string :option_type
|
|
t.string :name, :null => false
|
|
t.string :value, :null => false
|
|
|
|
t.timestamps
|
|
end
|
|
end
|
|
end
|