12 lines
269 B
Ruby
12 lines
269 B
Ruby
class CreateBudgetReclassifiedVotes < ActiveRecord::Migration
|
|
def change
|
|
create_table :budget_reclassified_votes do |t|
|
|
t.integer :user_id
|
|
t.integer :investment_id
|
|
t.string :reason, default: nil
|
|
|
|
t.timestamps null: false
|
|
end
|
|
end
|
|
end
|