diff options
author | Andrei Karas <akaras@inbox.ru> | 2015-02-26 00:35:19 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2015-02-26 00:35:19 +0300 |
commit | 75da24445db612b19f1cab29ffe5df8ef2cdbf5c (patch) | |
tree | 1a80ea678ffeb4ecbb72052d5151dcbd6b6601d9 /hercules | |
parent | 38eee2a50319328ebeed45231da28bad4b9d551f (diff) | |
download | evol-tools-75da24445db612b19f1cab29ffe5df8ef2cdbf5c.tar.gz evol-tools-75da24445db612b19f1cab29ffe5df8ef2cdbf5c.tar.bz2 evol-tools-75da24445db612b19f1cab29ffe5df8ef2cdbf5c.tar.xz evol-tools-75da24445db612b19f1cab29ffe5df8ef2cdbf5c.zip |
hercules: db converter also insert inter server user/password into login table.
Diffstat (limited to 'hercules')
-rw-r--r-- | hercules/templates/login.sql | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/hercules/templates/login.sql b/hercules/templates/login.sql index 804478d..fdc9f91 100644 --- a/hercules/templates/login.sql +++ b/hercules/templates/login.sql @@ -21,3 +21,5 @@ CREATE TABLE IF NOT EXISTS `login` ( KEY `name` (`userid`) ) ENGINE=InnoDB AUTO_INCREMENT=2000000; +INSERT INTO `login` (`account_id`, `userid`, `user_pass`, `sex`, `email`) VALUES ('1', 's1', 'p1', 'S','athena@athena.com'); + |