summaryrefslogtreecommitdiff
path: root/db/migrate/20140424230712_add_hidden_attrs_to_user.rb
diff options
context:
space:
mode:
authornfoy <nfoy@purdue.edu>2014-04-24 19:07:40 -0400
committernfoy <nfoy@purdue.edu>2014-04-24 19:07:40 -0400
commit67d95e5b92e3d19765c7ccaf5460737ffe2173f4 (patch)
tree5e4dd2606fd33bea4c9c3c5fbaa0ab25f72bb38e /db/migrate/20140424230712_add_hidden_attrs_to_user.rb
parentdf982eca7ab85f2782799ee49dd0d78a1c6b18d4 (diff)
run ./generate.sh
Diffstat (limited to 'db/migrate/20140424230712_add_hidden_attrs_to_user.rb')
-rw-r--r--db/migrate/20140424230712_add_hidden_attrs_to_user.rb6
1 files changed, 6 insertions, 0 deletions
diff --git a/db/migrate/20140424230712_add_hidden_attrs_to_user.rb b/db/migrate/20140424230712_add_hidden_attrs_to_user.rb
new file mode 100644
index 0000000..9b5c505
--- /dev/null
+++ b/db/migrate/20140424230712_add_hidden_attrs_to_user.rb
@@ -0,0 +1,6 @@
+class AddHiddenAttrsToUser < ActiveRecord::Migration
+ def change
+ add_column :users, :password_digest, :string
+ add_column :users, :permissions, :integer
+ end
+end