mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2024-11-29 10:24:20 +01:00
13 lines
341 B
Ruby
13 lines
341 B
Ruby
|
class CreatePrices < ActiveRecord::Migration
|
||
|
def change
|
||
|
create_table :prices do |t|
|
||
|
t.belongs_to :group, index: true, foreign_key: true
|
||
|
t.belongs_to :plan, index: true, foreign_key: true
|
||
|
t.belongs_to :priceable, polymorphic: true, index: true
|
||
|
t.integer :amount
|
||
|
|
||
|
t.timestamps null: false
|
||
|
end
|
||
|
end
|
||
|
end
|