Skip to content

Commit 8422ecd

Browse files
committed
fix ddl issue
1 parent bf0e577 commit 8422ecd

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

server/dbBuild/databaseDDL.sql

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ create index voice_dialogueId_index
132132
on voice (dialogueId);
133133

134134

135-
create table main.npc
135+
create table npc
136136
(
137137
id integer
138138
constraint npc_pk
@@ -143,11 +143,11 @@ create table main.npc
143143
textHash integer
144144
);
145145

146-
create index main.npc_npcId_index
147-
on main.npc (npcId);
146+
create index npc_npcId_index
147+
on npc (npcId);
148148

149149

150-
create table main.manualTextMap
150+
create table manualTextMap
151151
(
152152
id integer
153153
constraint manualTextMap_pk
@@ -156,8 +156,8 @@ create table main.manualTextMap
156156
textHash integer
157157
);
158158

159-
create unique index main.manualTextMap_textMapId_uindex
160-
on main.manualTextMap (textMapId);
159+
create unique index manualTextMap_textMapId_uindex
160+
on manualTextMap (textMapId);
161161

162162

163163

0 commit comments

Comments
 (0)