Add 'staged' boolean to User

This commit is contained in:
Régis Hanol
2015-11-06 19:19:13 +01:00
parent 6b197179c9
commit acecfeb37f
5 changed files with 23 additions and 1 deletions

View File

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