1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2024-11-29 10:24:20 +01:00
fab-manager/db/migrate/20150520132030_create_prices.rb

15 lines
376 B
Ruby

# frozen_string_literal:true
class CreatePrices < ActiveRecord::Migration[4.2]
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