summaryrefslogtreecommitdiff
path: root/db/migrate/20140304043656_add_password_digest_to_users.rb
diff options
context:
space:
mode:
authorLuke Shumaker <LukeShu@sbcglobal.net>2014-03-03 23:40:51 -0500
committerLuke Shumaker <LukeShu@sbcglobal.net>2014-03-03 23:40:51 -0500
commit9f246b9ec386ccb5e6665408d050cf71fc336283 (patch)
tree200208753b12ad269b7512da6c9278470584f159 /db/migrate/20140304043656_add_password_digest_to_users.rb
parentb8ed86ee1276eba4df8a321e81de5d9570a32850 (diff)
parent11e4de6fd8235b1877b1725d53a98f017130c768 (diff)
Merge branch 'clean'
Conflicts: generate.sh
Diffstat (limited to 'db/migrate/20140304043656_add_password_digest_to_users.rb')
-rw-r--r--db/migrate/20140304043656_add_password_digest_to_users.rb5
1 files changed, 5 insertions, 0 deletions
diff --git a/db/migrate/20140304043656_add_password_digest_to_users.rb b/db/migrate/20140304043656_add_password_digest_to_users.rb
new file mode 100644
index 0000000..7ad1f62
--- /dev/null
+++ b/db/migrate/20140304043656_add_password_digest_to_users.rb
@@ -0,0 +1,5 @@
+class AddPasswordDigestToUsers < ActiveRecord::Migration
+ def change
+ add_column :users, :password_digest, :string
+ end
+end