diff --git a/application/migrations/082_add_reset_pass_to_users.php b/application/migrations/082_add_reset_pass_to_users.php index f2b697eb..00c2df42 100644 --- a/application/migrations/082_add_reset_pass_to_users.php +++ b/application/migrations/082_add_reset_pass_to_users.php @@ -15,7 +15,7 @@ class Migration_add_reset_pass_to_users extends CI_Migration { { $fields = array( 'reset_password_code varchar(50) DEFAULT NULL', - 'reset_password_date TIMESTAMP DEFAULT NULL', + 'reset_password_date varchar(50) DEFAULT NULL', ); $this->dbforge->add_column('users', $fields);