added contributor column to users

This commit is contained in:
Georg G 2015-04-19 22:24:36 +02:00
parent 55b2a98450
commit af9c905165
1 changed files with 5 additions and 0 deletions

View File

@ -0,0 +1,5 @@
class AddContributorToUsers < ActiveRecord::Migration
def change
add_column :users, :contributor, :boolean, default: :false
end
end