Files
nairobi/db/migrate/20190410132842_add_selected_to_proposal.rb
Javi Martín 2a6c285257 Update migrations and schema file
It looks like they got out of sync when rebasing.
2019-06-07 17:36:22 +02:00

6 lines
155 B
Ruby

class AddSelectedToProposal < ActiveRecord::Migration[4.2]
def change
add_column :proposals, :selected, :bool, default: false, index: true
end
end