10 lines
266 B
Ruby
10 lines
266 B
Ruby
class CreateBudgetValuatorAssignments < ActiveRecord::Migration
|
|
def change
|
|
create_table :budget_valuator_assignments, index: false do |t|
|
|
t.belongs_to :valuator
|
|
t.integer :investment_id, index: true
|
|
t.timestamps null: false
|
|
end
|
|
end
|
|
end
|