Files
nairobi/db/migrate/20170517123042_create_budget_reclassified_votes.rb
2017-05-17 15:13:28 +02:00

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