From 94be73202617a5b0886c348ffbaf08947ecf8b45 Mon Sep 17 00:00:00 2001 From: Dmitriy Zaporozhets Date: Thu, 13 Jun 2013 20:01:35 +0300 Subject: Add password_expires_at to users table --- db/migrate/20130613165816_add_password_expires_at_to_users.rb | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 db/migrate/20130613165816_add_password_expires_at_to_users.rb (limited to 'db/migrate/20130613165816_add_password_expires_at_to_users.rb') 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 -- cgit v1.2.1