diff options
author | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2013-06-13 20:01:35 +0300 |
---|---|---|
committer | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2013-06-13 20:01:35 +0300 |
commit | 94be73202617a5b0886c348ffbaf08947ecf8b45 (patch) | |
tree | a07f08336ffa9fc9215b47174f090516a215b346 /db/migrate | |
parent | 5b40780290e7d7c9e129e58c4f3f435073598ae6 (diff) | |
download | gitlab-ce-94be73202617a5b0886c348ffbaf08947ecf8b45.tar.gz |
Add password_expires_at to users table
Diffstat (limited to 'db/migrate')
-rw-r--r-- | db/migrate/20130613165816_add_password_expires_at_to_users.rb | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/db/migrate/20130613165816_add_password_expires_at_to_users.rb b/db/migrate/20130613165816_add_password_expires_at_to_users.rb new file mode 100644 index 00000000000..3479c8e64d0 --- /dev/null +++ b/db/migrate/20130613165816_add_password_expires_at_to_users.rb @@ -0,0 +1,5 @@ +class AddPasswordExpiresAtToUsers < ActiveRecord::Migration + def change + add_column :users, :password_expires_at, :datetime + end +end |