Skip to content

Commit

Permalink
更新初始密码
Browse files Browse the repository at this point in the history
因为登录和修改密码都使用MD5加密,所以要修改数据库初始账号密码。
  • Loading branch information
tianmingxing committed Nov 20, 2015
1 parent 2199e03 commit cb6692d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions db.sql
Original file line number Diff line number Diff line change
Expand Up @@ -116,8 +116,8 @@ LOCK TABLES `user` WRITE;

INSERT INTO `user` (`id`, `nice_name`, `login_name`, `last_time`, `login_pwd`, `isdel`, `issuper`)
VALUES
(1,'admin','admin',1438314444,'654321',0,1),
(2,'root','root',1435575693,'123456',0,1);
(1,'admin','admin',1438314444,'c33367701511b4f6020ec61ded352059',0,1),
(2,'root','root',1435575693,'e10adc3949ba59abbe56e057f20f883e',0,1);

/*!40000 ALTER TABLE `user` ENABLE KEYS */;
UNLOCK TABLES;
Expand Down

0 comments on commit cb6692d

Please sign in to comment.