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

13 lines
256 B
Ruby
Executable File

class CreateItemSets < ActiveRecord::Migration[5.1]
def change
create_table :item_sets do |t|
t.string :name
t.string :alt_name
t.integer :min_selectable_qty
t.integer :max_selectable_qty
t.timestamps
end
end
end