29 行
792 B
PHP
29 行
792 B
PHP
|
<?php
|
||
|
|
||
|
defined('BASEPATH') OR exit('No direct script access allowed');
|
||
|
|
||
|
/**
|
||
|
* Class Migration_create_eqsl_images_table
|
||
|
*
|
||
|
* Creates columnns reset_password_code and reset_password_time in the users table
|
||
|
*
|
||
|
*/
|
||
|
|
||
|
class Migration_add_reset_pass_to_users extends CI_Migration {
|
||
|
|
||
|
public function up()
|
||
|
{
|
||
|
$fields = array(
|
||
|
'reset_password_code varchar(50) DEFAULT NULL',
|
||
|
'reset_password_date TIMESTAMP DEFAULT NULL',
|
||
|
);
|
||
|
|
||
|
$this->dbforge->add_column('users', $fields);
|
||
|
}
|
||
|
|
||
|
public function down()
|
||
|
{
|
||
|
$this->dbforge->drop_column('users', 'reset_password_code');
|
||
|
$this->dbforge->drop_column('users', 'reset_password_date');
|
||
|
}
|
||
|
}
|