Retrospring/db/migrate/20150419201122_add_contribu...

6 lines
145 B
Ruby
Raw Normal View History

class AddContributorToUsers < ActiveRecord::Migration[4.2]
2015-04-19 13:24:36 -07:00
def change
add_column :users, :contributor, :boolean, default: :false
end
end