diff options
author | ultramage <ultramage@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2008-04-11 07:45:26 +0000 |
---|---|---|
committer | ultramage <ultramage@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2008-04-11 07:45:26 +0000 |
commit | aa9f053bfc0d2136c7fc6365b7517cf58fa022b8 (patch) | |
tree | c7aa6fb180de37f2a0f66d8908255401148dc30c /sql-files/main.sql | |
parent | 0ba512a7751da513db8f5a862277fc69297d4be4 (diff) | |
download | hercules-aa9f053bfc0d2136c7fc6365b7517cf58fa022b8.tar.gz hercules-aa9f053bfc0d2136c7fc6365b7517cf58fa022b8.tar.bz2 hercules-aa9f053bfc0d2136c7fc6365b7517cf58fa022b8.tar.xz hercules-aa9f053bfc0d2136c7fc6365b7517cf58fa022b8.zip |
Reverted the `login` table changes from r12464
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@12561 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'sql-files/main.sql')
-rw-r--r-- | sql-files/main.sql | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sql-files/main.sql b/sql-files/main.sql index 6f59de4b5..a12e32961 100644 --- a/sql-files/main.sql +++ b/sql-files/main.sql @@ -427,10 +427,10 @@ CREATE TABLE `login` ( `email` varchar(39) NOT NULL default '', `level` tinyint(3) NOT NULL default '0', `error_message` smallint(11) unsigned NOT NULL default '0', - `expiration_time` int(11) unsigned NOT NULL default '0', + `connect_until` int(11) unsigned NOT NULL default '0', `last_ip` varchar(100) NOT NULL default '', `memo` smallint(11) unsigned NOT NULL default '0', - `unban_time` int(11) unsigned NOT NULL default '0', + `ban_until` int(11) unsigned NOT NULL default '0', `state` int(11) unsigned NOT NULL default '0', PRIMARY KEY (`account_id`), KEY `name` (`userid`) |