fix more data types

This commit is contained in:
Li 2022-11-10 04:53:09 +13:00
parent 4f091efa82
commit a5116641a3
1 changed files with 3 additions and 3 deletions

View File

@ -100,7 +100,7 @@ try:
CREATE TABLE npcList(
Name TEXT(12),
CharacterId int,
NextTimestamp int,
NextTimestamp bigint,
Pool TEXT(8024),
RequestLevel int
);
@ -113,7 +113,7 @@ try:
Name TEXT(12),
LastVisit int,
AreaId int,
NextRubishSpawnTime int,
NextRubishSpawnTime bigint,
ActualAreaId int
);
""")
@ -156,7 +156,7 @@ try:
CREATE TABLE harvestablesList(
Name TEXT(12),
ItemTemplateId int,
UpdateTime int,
UpdateTime bigint,
SlotIndex int,
HarvestableName TEXT(128),
AreaId int,