| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 | <?phpuse yii\db\Migration;class m160516_021255_admin_user extends Migration{    public function up()    {			$sql1 = "				CREATE TABLE IF NOT EXISTS `admin_user` (				  `id` int(20) unsigned NOT NULL AUTO_INCREMENT,				  `username` varchar(50) DEFAULT NULL COMMENT '用户名',				  `password_hash` varchar(80) DEFAULT NULL COMMENT '密码',				  `password_reset_token` varchar(60) DEFAULT NULL COMMENT '密码token',				  `email` varchar(60) DEFAULT NULL COMMENT '邮箱',				  `person` varchar(100) DEFAULT NULL COMMENT '用户姓名',				  `code` varchar(100) DEFAULT NULL,				  `auth_key` varchar(60) DEFAULT NULL,				  `status` int(5) DEFAULT NULL COMMENT '状态',				  `created_at` int(18) DEFAULT NULL COMMENT '创建时间',				  `updated_at` int(18) DEFAULT NULL COMMENT '更新时间',				  `password` varchar(50) DEFAULT NULL COMMENT '密码',				  `access_token` varchar(60) DEFAULT NULL,				  `allowance` int(20) DEFAULT NULL,				  `allowance_updated_at` int(20) DEFAULT NULL,				  `created_at_datetime` datetime DEFAULT NULL,				  `updated_at_datetime` datetime DEFAULT NULL,				  `birth_date` datetime DEFAULT NULL COMMENT '出生日期',				  PRIMARY KEY (`id`),				  UNIQUE KEY `username` (`username`),				  UNIQUE KEY `access_token` (`access_token`)				) ENGINE=InnoDB  DEFAULT CHARSET=utf8 AUTO_INCREMENT=3 ;			";		$this->execute($sql1);		$sql2 = "		INSERT INTO `admin_user` (`id`, `username`, `password_hash`, `password_reset_token`, `email`, `person`, `code`, `auth_key`, `status`, `created_at`, `updated_at`, `password`, `access_token`, `allowance`, `allowance_updated_at`, `created_at_datetime`, `updated_at_datetime`, `birth_date`) VALUES		(1, 'terry', '$2y$13$EyK1HyJtv4A/19Jb8gB5y.4SQm5y93eMeHjUf35ryLyd2dWPJlh8y', NULL, 'zqy234@126.com', '', '3333', 'HH-ZlZXirlG-egyz8OTtl9EVj9fvKW00', 1, 1441763620, 1467522167, '', 'yrYWR7kY-A9bUAP6UUZgCR3yi3ALtUh-', 599, 1452491877, '2016-01-12 09:41:44', '2016-07-03 13:02:47', NULL),		(2, 'admin', '$2y$13$T5ZFrLpJdTEkAoAdnC6A/u8lh/pG.6M0qAZBo1lKE.6x6o3V6yvVG', NULL, '3727@qq.com', '超级管理员', '111', '_PYjb4PdIIY332LquBRC5tClZUXV0zm_', 1, NULL, 1468917063, '', '1Gk6ZNn-QaBaKFI4uE2bSw0w3N7ej72q', NULL, NULL, '2016-01-11 09:41:52', '2016-06-26 01:40:55', NULL);		";		$this->execute($sql2);    }    public function down()    {        echo "m160516_021255_admin_user cannot be reverted.\n";        return false;    }    /*    // Use safeUp/safeDown to run migration code within a transaction    public function safeUp()    {    }    public function safeDown()    {    }    */}
 |