mirror of
https://github.com/EQEmu/Server.git
synced 2026-05-16 18:52:22 +00:00
eqtime is now stored in the DB.
required/2015_12_17_eqtime.sql
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
DROP TABLE IF EXISTS `eqtime`;
|
||||
CREATE TABLE `eqtime` (
|
||||
`minute` tinyint(4) not null default 0,
|
||||
`hour` tinyint(4) not null default 0,
|
||||
`day` tinyint(4) not null default 0,
|
||||
`month` tinyint(4) not null default 0,
|
||||
`year` int(4) not null default 0,
|
||||
`realtime` int(11) not null default 0
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
|
||||
|
||||
INSERT INTO eqtime values (0,1,28,12,3766,1444035661);
|
||||
Reference in New Issue
Block a user