2016-08-24 12:30:48 +02:00
|
|
|
class CreatePriceCategories < ActiveRecord::Migration
|
|
|
|
def change
|
|
|
|
create_table :price_categories do |t|
|
|
|
|
t.string :name
|
2016-08-24 16:21:43 +02:00
|
|
|
t.text :conditions
|
2016-08-24 12:30:48 +02:00
|
|
|
|
|
|
|
t.timestamps null: false
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|