File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments