mirror of
https://github.com/sebastian-heinz/Arrowgene.DragonsDogmaOnline
synced 2026-08-03 11:12:41 -04:00
8 lines
179 B
MySQL
8 lines
179 B
MySQL
|
|
CREATE TABLE ddon_schedule_next (
|
||
|
|
"type" INTEGER NOT NULL,
|
||
|
|
"timestamp" BIGINT NOT NULL,
|
||
|
|
PRIMARY KEY("type")
|
||
|
|
);
|
||
|
|
|
||
|
|
INSERT INTO ddon_schedule_next(type, timestamp) VALUES (19, 0);
|