Files
grecia/db/migrate/20160224123110_create_valuation_assignments.rb
2016-02-24 18:52:15 +01:00

10 lines
235 B
Ruby

class CreateValuationAssignments < ActiveRecord::Migration
def change
create_table :valuation_assignments do |t|
t.belongs_to :valuator
t.belongs_to :spending_proposal
t.timestamps null: false
end
end
end