goku_ce.sql 21.5 KB
Newer Older
Y
Your Name 已提交
1
PRAGMA foreign_keys = false;
E
eoLinker API Management 已提交
2 3 4 5

-- ----------------------------
-- Table structure for goku_admin
-- ----------------------------
Y
Your Name 已提交
6 7
DROP TABLE IF EXISTS "goku_admin";
CREATE TABLE "goku_admin" (
Y
Your Name 已提交
8 9 10 11 12 13 14
                            "userID" integer NOT NULL PRIMARY KEY AUTOINCREMENT,
                            "loginCall" text(255) NOT NULL,
                            "loginPassword" text(255) NOT NULL,
                            "userType" integer(4) NOT NULL DEFAULT 0,
                            "groupID" integer(11) NOT NULL DEFAULT 0,
                            "remark" text(255),
                            "permissions" text
Y
Your Name 已提交
15
);
E
eoLinker API Management 已提交
16 17 18 19

-- ----------------------------
-- Table structure for goku_balance
-- ----------------------------
Y
Your Name 已提交
20 21
DROP TABLE IF EXISTS "goku_balance";
CREATE TABLE "goku_balance" (
Y
Your Name 已提交
22 23 24 25 26 27 28 29 30 31 32 33
                              "balanceID" integer NOT NULL PRIMARY KEY AUTOINCREMENT,
                              "balanceName" text(255) NOT NULL,
                              "serviceName" text(255) NOT NULL,
                              "balanceConfig" text,
                              "createTime" text,
                              "updateTime" text,
                              "balanceDesc" text(255),
                              "defaultConfig" text NOT NULL,
                              "clusterConfig" text NOT NULL DEFAULT '',
                              "appName" text(255) NOT NULL DEFAULT '',
                              "static" text,
                              "staticCluster" text
Y
Your Name 已提交
34
);
E
eoLinker API Management 已提交
35 36 37 38

-- ----------------------------
-- Table structure for goku_cluster
-- ----------------------------
Y
Your Name 已提交
39 40
DROP TABLE IF EXISTS "goku_cluster";
CREATE TABLE "goku_cluster" (
Y
Your Name 已提交
41 42 43 44 45 46
                              "id" integer NOT NULL PRIMARY KEY AUTOINCREMENT,
                              "name" text(20) NOT NULL,
                              "title" text(50) NOT NULL,
                              "note" text(255),
                              "db" text,
                              "redis" text
Y
Your Name 已提交
47
);
E
eoLinker API Management 已提交
48 49 50 51

-- ----------------------------
-- Table structure for goku_config_log
-- ----------------------------
Y
Your Name 已提交
52 53
DROP TABLE IF EXISTS "goku_config_log";
CREATE TABLE "goku_config_log" (
Y
Your Name 已提交
54 55 56 57 58 59 60 61 62
                                 "id" integer NOT NULL PRIMARY KEY AUTOINCREMENT,
                                 "name" text(20) NOT NULL,
                                 "enable" integer(11) NOT NULL DEFAULT 1,
                                 "dir" text(255) NOT NULL,
                                 "file" text(255) NOT NULL,
                                 "period" text(10) NOT NULL,
                                 "level" text(10) NOT NULL,
                                 "fields" text NOT NULL,
                                 "expire" integer(11) NOT NULL DEFAULT 3
Y
Your Name 已提交
63
);
E
eoLinker API Management 已提交
64 65 66 67

-- ----------------------------
-- Table structure for goku_conn_plugin_api
-- ----------------------------
Y
Your Name 已提交
68 69
DROP TABLE IF EXISTS "goku_conn_plugin_api";
CREATE TABLE "goku_conn_plugin_api" (
Y
Your Name 已提交
70 71 72 73 74 75 76 77 78 79 80
                                      "connID" integer NOT NULL PRIMARY KEY AUTOINCREMENT,
                                      "apiID" integer(11) NOT NULL,
                                      "pluginName" text(255) NOT NULL,
                                      "pluginConfig" text,
                                      "strategyID" text(255) NOT NULL,
                                      "pluginInfo" text,
                                      "createTime" text,
                                      "updateTime" text,
                                      "pluginStatus" integer(4),
                                      "updateTag" text(32),
                                      "updaterID" integer(11) NOT NULL DEFAULT 0
Y
Your Name 已提交
81
);
E
eoLinker API Management 已提交
82 83 84 85

-- ----------------------------
-- Table structure for goku_conn_plugin_strategy
-- ----------------------------
Y
Your Name 已提交
86 87
DROP TABLE IF EXISTS "goku_conn_plugin_strategy";
CREATE TABLE "goku_conn_plugin_strategy" (
Y
Your Name 已提交
88 89 90 91 92 93 94 95 96 97
                                           "connID" integer NOT NULL PRIMARY KEY AUTOINCREMENT,
                                           "strategyID" text(255) NOT NULL,
                                           "pluginName" text(255) NOT NULL,
                                           "pluginConfig" text,
                                           "pluginInfo" text,
                                           "createTime" text,
                                           "updateTime" text,
                                           "pluginStatus" integer(4),
                                           "updateTag" text(32),
                                           "updaterID" integer(11) NOT NULL DEFAULT 0
Y
Your Name 已提交
98
);
E
eoLinker API Management 已提交
99 100 101 102

-- ----------------------------
-- Table structure for goku_conn_strategy_api
-- ----------------------------
Y
Your Name 已提交
103 104
DROP TABLE IF EXISTS "goku_conn_strategy_api";
CREATE TABLE "goku_conn_strategy_api" (
Y
Your Name 已提交
105 106 107 108 109 110 111
                                        "connID" integer NOT NULL PRIMARY KEY AUTOINCREMENT,
                                        "strategyID" text(255) NOT NULL,
                                        "apiID" integer(11) NOT NULL,
                                        "apiMonitorStatus" integer(11) NOT NULL DEFAULT 0,
                                        "strategyMonitorStatus" integer(11) NOT NULL DEFAULT 0,
                                        "target" text(255),
                                        "updateTime" text
Y
Your Name 已提交
112
);
E
eoLinker API Management 已提交
113 114 115 116

-- ----------------------------
-- Table structure for goku_gateway
-- ----------------------------
Y
Your Name 已提交
117 118
DROP TABLE IF EXISTS "goku_gateway";
CREATE TABLE "goku_gateway" (
Y
Your Name 已提交
119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138
                              "id" integer(11) NOT NULL,
                              "successCode" text(255) NOT NULL,
                              "nodeUpdatePeriod" integer(11) NOT NULL,
                              "monitorUpdatePeriod" integer(11) NOT NULL,
                              "alertStatus" integer(4) NOT NULL,
                              "alertPeriodType" integer(4) NOT NULL,
                              "alertAddress" text(255),
                              "alertLogPath" text(255),
                              "sender" text(255),
                              "senderPassword" text(255),
                              "smtpAddress" text(255),
                              "smtpPort" integer(11) NOT NULL,
                              "smtpProtocol" integer(4) NOT NULL,
                              "receiverList" text(255),
                              "monitorTimeout" integer(4) NOT NULL,
                              "apiAlertInfo" text,
                              "nodeAlertInfo" text,
                              "redisAlertInfo" text,
                              "versionID" INTEGER NOT NULL DEFAULT 0,
                              PRIMARY KEY ("id")
Y
Your Name 已提交
139 140 141
);

INSERT INTO "goku_gateway" VALUES (1, 200, 1, 30, 0, 0, NULL, NULL, NULL, NULL, NULL, 25, 0, NULL, 0, NULL, NULL, NULL, 0);
E
eoLinker API Management 已提交
142 143 144 145

-- ----------------------------
-- Table structure for goku_gateway_alert
-- ----------------------------
Y
Your Name 已提交
146 147
DROP TABLE IF EXISTS "goku_gateway_alert";
CREATE TABLE "goku_gateway_alert" (
Y
Your Name 已提交
148 149 150 151 152 153 154 155 156
                                    "alertID" integer NOT NULL PRIMARY KEY AUTOINCREMENT,
                                    "requestURL" text(255) NOT NULL,
                                    "targetServer" text(255) NOT NULL,
                                    "alertPeriodType" integer(4) NOT NULL,
                                    "alertCount" integer(11) NOT NULL,
                                    "updateTime" text,
                                    "targetURL" text(255) NOT NULL,
                                    "clusterName" text(255),
                                    "nodeIP" text(255)
Y
Your Name 已提交
157
);
E
eoLinker API Management 已提交
158 159 160 161

-- ----------------------------
-- Table structure for goku_gateway_api
-- ----------------------------
Y
Your Name 已提交
162 163
DROP TABLE IF EXISTS "goku_gateway_api";
CREATE TABLE "goku_gateway_api" (
Y
Your Name 已提交
164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190
                                  "apiID" integer NOT NULL PRIMARY KEY AUTOINCREMENT,
                                  "groupID" integer(11) NOT NULL,
                                  "projectID" integer(11) NOT NULL,
                                  "requestURL" text(255) NOT NULL,
                                  "apiName" text(255) NOT NULL,
                                  "requestMethod" text(255) NOT NULL,
                                  "targetServer" text(255),
                                  "targetURL" text(255),
                                  "targetMethod" text(255),
                                  "isFollow" text(32) NOT NULL,
                                  "stripPrefix" text(32),
                                  "timeout" integer(11),
                                  "retryCount" integer(11),
                                  "createTime" text,
                                  "updateTime" text,
                                  "alertValve" integer(11) NOT NULL DEFAULT 0,
                                  "monitorStatus" integer(11) NOT NULL DEFAULT 1,
                                  "managerID" integer(11) NOT NULL,
                                  "lastUpdateUserID" integer(11) NOT NULL,
                                  "createUserID" integer(11) NOT NULL,
                                  "balanceName" text(255),
                                  "protocol" text(20),
                                  "stripSlash" text(32),
                                  "apiType" integer NOT NULL DEFAULT 0,
                                  "responseDataType" text NOT NULL DEFAULT origin,
                                  "linkApis" TEXT,
                                  "staticResponse" TEXT
Y
Your Name 已提交
191
);
E
eoLinker API Management 已提交
192 193 194 195

-- ----------------------------
-- Table structure for goku_gateway_api_group
-- ----------------------------
Y
Your Name 已提交
196 197
DROP TABLE IF EXISTS "goku_gateway_api_group";
CREATE TABLE "goku_gateway_api_group" (
Y
Your Name 已提交
198 199 200 201 202 203
                                        "groupID" integer NOT NULL PRIMARY KEY AUTOINCREMENT,
                                        "projectID" integer(11) NOT NULL,
                                        "groupName" text(255) NOT NULL,
                                        "groupPath" text(255),
                                        "groupDepth" text(255),
                                        "parentGroupID" integer(11) NOT NULL DEFAULT 0
Y
Your Name 已提交
204
);
E
eoLinker API Management 已提交
205 206 207 208

-- ----------------------------
-- Table structure for goku_gateway_permission_group
-- ----------------------------
Y
Your Name 已提交
209 210
DROP TABLE IF EXISTS "goku_gateway_permission_group";
CREATE TABLE "goku_gateway_permission_group" (
Y
Your Name 已提交
211 212 213
                                               "groupID" integer NOT NULL PRIMARY KEY AUTOINCREMENT,
                                               "groupName" text(255) NOT NULL,
                                               "permissions" text
Y
Your Name 已提交
214
);
E
eoLinker API Management 已提交
215 216 217 218

-- ----------------------------
-- Table structure for goku_gateway_project
-- ----------------------------
Y
Your Name 已提交
219 220
DROP TABLE IF EXISTS "goku_gateway_project";
CREATE TABLE "goku_gateway_project" (
Y
Your Name 已提交
221 222 223 224
                                      "projectID" integer NOT NULL PRIMARY KEY AUTOINCREMENT,
                                      "projectName" text(255) NOT NULL,
                                      "createTime" text,
                                      "updateTime" text
Y
Your Name 已提交
225
);
E
eoLinker API Management 已提交
226 227 228 229

-- ----------------------------
-- Table structure for goku_gateway_strategy
-- ----------------------------
Y
Your Name 已提交
230 231
DROP TABLE IF EXISTS "goku_gateway_strategy";
CREATE TABLE "goku_gateway_strategy" (
Y
Your Name 已提交
232 233 234 235 236 237 238 239 240 241
                                       "strategyID" text(32) NOT NULL,
                                       "strategyName" text(255) NOT NULL,
                                       "updateTime" text,
                                       "createTime" text,
                                       "auth" text(255),
                                       "groupID" integer(11) NOT NULL DEFAULT 0,
                                       "monitorStatus" integer(4) NOT NULL DEFAULT 0,
                                       "enableStatus" integer(11) NOT NULL DEFAULT 0,
                                       "strategyType" integer(11) NOT NULL DEFAULT 0,
                                       PRIMARY KEY ("strategyID")
Y
Your Name 已提交
242
);
E
eoLinker API Management 已提交
243 244

-- ----------------------------
Y
Your Name 已提交
245
-- Records of "goku_gateway_strategy"
E
eoLinker API Management 已提交
246
-- ----------------------------
Y
Your Name 已提交
247
INSERT INTO "goku_gateway_strategy" VALUES ('RGAtKBd', '开放策略', '2019-10-17 00:00:00', '2019-10-17 00:00:00', NULL, 0, 0, 0, 1);
E
eoLinker API Management 已提交
248 249 250 251

-- ----------------------------
-- Table structure for goku_gateway_strategy_group
-- ----------------------------
Y
Your Name 已提交
252 253
DROP TABLE IF EXISTS "goku_gateway_strategy_group";
CREATE TABLE "goku_gateway_strategy_group" (
Y
Your Name 已提交
254 255 256
                                             "groupID" integer NOT NULL PRIMARY KEY AUTOINCREMENT,
                                             "groupName" text(255) NOT NULL,
                                             "groupType" integer(11) NOT NULL DEFAULT 0
Y
Your Name 已提交
257
);
E
eoLinker API Management 已提交
258 259

-- ----------------------------
Y
Your Name 已提交
260
-- Records of "goku_gateway_strategy_group"
E
eoLinker API Management 已提交
261
-- ----------------------------
Y
Your Name 已提交
262
INSERT INTO "goku_gateway_strategy_group" VALUES (1, '开放分组', 1);
E
eoLinker API Management 已提交
263 264

-- ----------------------------
Y
Your Name 已提交
265
-- Table structure for goku_gateway_version_config
E
eoLinker API Management 已提交
266
-- ----------------------------
Y
Your Name 已提交
267 268
DROP TABLE IF EXISTS "goku_gateway_version_config";
CREATE TABLE "goku_gateway_version_config" (
Y
Your Name 已提交
269 270 271 272 273 274 275 276 277 278
                                             "versionID" integer NOT NULL PRIMARY KEY AUTOINCREMENT,
                                             "name" TEXT NOT NULL,
                                             "version" TEXT,
                                             "remark" TEXT,
                                             "createTime" TEXT,
                                             "updateTime" TEXT,
                                             "publishTime" TEXT,
                                             "config" TEXT,
                                             "balanceConfig" TEXT,
                                             "discoverConfig" TEXT
Y
Your Name 已提交
279
);
E
eoLinker API Management 已提交
280 281 282 283

-- ----------------------------
-- Table structure for goku_monitor_cluster
-- ----------------------------
Y
Your Name 已提交
284 285
DROP TABLE IF EXISTS "goku_monitor_cluster";
CREATE TABLE "goku_monitor_cluster" (
Y
Your Name 已提交
286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302
                                      "recordID" integer NOT NULL PRIMARY KEY AUTOINCREMENT,
                                      "strategyID" text(20) NOT NULL,
                                      "apiID" integer(11) NOT NULL,
                                      "clusterID" integer(11) NOT NULL,
                                      "hour" integer(11) NOT NULL,
                                      "gatewayRequestCount" integer(11) NOT NULL,
                                      "gatewaySuccessCount" integer(11) NOT NULL,
                                      "gatewayStatus2xxCount" integer(11) NOT NULL,
                                      "gatewayStatus4xxCount" integer(11) NOT NULL,
                                      "gatewayStatus5xxCount" integer(11) NOT NULL,
                                      "proxyRequestCount" integer(11) NOT NULL,
                                      "proxySuccessCount" integer(11) NOT NULL,
                                      "proxyStatus2xxCount" integer(11) NOT NULL,
                                      "proxyStatus4xxCount" integer(11) NOT NULL,
                                      "proxyStatus5xxCount" integer(11) NOT NULL,
                                      "proxyTimeoutCount" integer(11) NOT NULL,
                                      "updateTime" text NOT NULL
Y
Your Name 已提交
303
);
E
eoLinker API Management 已提交
304 305 306 307

-- ----------------------------
-- Table structure for goku_node_group
-- ----------------------------
Y
Your Name 已提交
308 309
DROP TABLE IF EXISTS "goku_node_group";
CREATE TABLE "goku_node_group" (
Y
Your Name 已提交
310 311 312 313
                                 "groupID" integer NOT NULL PRIMARY KEY AUTOINCREMENT,
                                 "groupName" text(255) NOT NULL,
                                 "groupType" integer(4) NOT NULL,
                                 "clusterID" integer(11) NOT NULL
Y
Your Name 已提交
314
);
E
eoLinker API Management 已提交
315 316 317 318

-- ----------------------------
-- Table structure for goku_node_info
-- ----------------------------
Y
Your Name 已提交
319 320
DROP TABLE IF EXISTS "goku_node_info";
CREATE TABLE "goku_node_info" (
Y
Your Name 已提交
321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337
                                "nodeID" integer NOT NULL PRIMARY KEY AUTOINCREMENT,
                                "nodeIP" text(255) NOT NULL,
                                "updateStatus" integer(4) NOT NULL DEFAULT 0,
                                "createTime" text,
                                "updateTime" text,
                                "groupID" integer(11) NOT NULL DEFAULT 0,
                                "nodeName" text(255) NOT NULL,
                                "nodePort" text(255),
                                "nodeStatus" integer(11) NOT NULL,
                                "version" text(255),
                                "sshPort" text(255) DEFAULT 22,
                                "userName" text(255),
                                "password" text(255),
                                "gatewayPath" text(255),
                                "key" text,
                                "authMethod" integer(4) NOT NULL DEFAULT 0,
                                "clusterID" integer(11) NOT NULL DEFAULT 0
Y
Your Name 已提交
338
);
E
eoLinker API Management 已提交
339 340 341 342

-- ----------------------------
-- Table structure for goku_plugin
-- ----------------------------
Y
Your Name 已提交
343 344
DROP TABLE IF EXISTS "goku_plugin";
CREATE TABLE "goku_plugin" (
Y
Your Name 已提交
345 346 347 348 349 350 351 352 353 354 355 356 357
                             "pluginID" integer NOT NULL PRIMARY KEY AUTOINCREMENT,
                             "pluginName" text(255) NOT NULL,
                             "chineseName" text(255),
                             "pluginStatus" integer(4) NOT NULL,
                             "pluginPriority" integer(4) NOT NULL,
                             "pluginConfig" text,
                             "pluginInfo" text,
                             "isStop" integer(4) NOT NULL,
                             "pluginType" integer(4) NOT NULL,
                             "official" text(255) NOT NULL,
                             "pluginDesc" text(255),
                             "version" text(255) NOT NULL,
                             "isCheck" integer(4) NOT NULL
Y
Your Name 已提交
358
);
E
eoLinker API Management 已提交
359 360 361


-- ----------------------------
Y
Your Name 已提交
362
-- Table structure for goku_service_config
E
eoLinker API Management 已提交
363
-- ----------------------------
Y
Your Name 已提交
364 365
DROP TABLE IF EXISTS "goku_service_config";
CREATE TABLE "goku_service_config" (
Y
Your Name 已提交
366 367 368 369 370 371 372 373 374 375 376 377 378 379
                                     "id" integer NOT NULL PRIMARY KEY AUTOINCREMENT,
                                     "name" text(255) NOT NULL,
                                     "default" integer(4),
                                     "driver" text(20) NOT NULL,
                                     "desc" text NOT NULL,
                                     "config" text NOT NULL,
                                     "clusterConfig" text NOT NULL,
                                     "healthCheck" integer(4) NOT NULL,
                                     "healthCheckPath" text(255) NOT NULL,
                                     "healthCheckPeriod" integer(11) NOT NULL,
                                     "healthCheckCode" text(255) NOT NULL,
                                     "healthCheckTimeOut" integer(11) NOT NULL,
                                     "createTime" text NOT NULL,
                                     "updateTime" text NOT NULL
Y
Your Name 已提交
380
);
E
eoLinker API Management 已提交
381 382

-- ----------------------------
Y
Your Name 已提交
383
-- Table structure for goku_service_discovery
E
eoLinker API Management 已提交
384
-- ----------------------------
Y
Your Name 已提交
385 386
DROP TABLE IF EXISTS "goku_service_discovery";
CREATE TABLE "goku_service_discovery" (
Y
Your Name 已提交
387 388 389 390 391 392 393 394
                                        "id" integer NOT NULL PRIMARY KEY AUTOINCREMENT,
                                        "name" text(30),
                                        "type" text(20),
                                        "remark" text(500),
                                        "config" text,
                                        "default" text(255),
                                        "createTime" text,
                                        "updateTime" text
Y
Your Name 已提交
395
);
E
eoLinker API Management 已提交
396 397

-- ----------------------------
Y
Your Name 已提交
398
-- Table structure for goku_table_update_record
E
eoLinker API Management 已提交
399
-- ----------------------------
Y
Your Name 已提交
400 401
DROP TABLE IF EXISTS "goku_table_update_record";
CREATE TABLE "goku_table_update_record" (
Y
Your Name 已提交
402 403 404
                                          "name" text(64) NOT NULL,
                                          "updateTime" text NOT NULL,
                                          "tableID" integer NOT NULL PRIMARY KEY AUTOINCREMENT
Y
Your Name 已提交
405 406
);

E
eoLinker API Management 已提交
407 408

-- ----------------------------
Y
Your Name 已提交
409
-- Records of "sqlite_sequence"
E
eoLinker API Management 已提交
410
-- ----------------------------
Y
Your Name 已提交
411 412 413 414 415
INSERT INTO "sqlite_sequence" VALUES ('goku_admin', 1);
INSERT INTO "sqlite_sequence" VALUES ('goku_plugin', 30);
INSERT INTO "sqlite_sequence" VALUES ('goku_balance', 0);
INSERT INTO "sqlite_sequence" VALUES ('goku_config_log', 0);
INSERT INTO "sqlite_sequence" VALUES ('goku_gateway_strategy_group', 1);
E
eoLinker API Management 已提交
416 417

-- ----------------------------
Y
Your Name 已提交
418
-- Auto increment value for goku_admin
E
eoLinker API Management 已提交
419
-- ----------------------------
Y
Your Name 已提交
420
UPDATE "sqlite_sequence" SET seq = 1 WHERE name = 'goku_admin';
E
eoLinker API Management 已提交
421 422

-- ----------------------------
Y
Your Name 已提交
423
-- Auto increment value for goku_balance
E
eoLinker API Management 已提交
424 425 426
-- ----------------------------

-- ----------------------------
Y
Your Name 已提交
427
-- Indexes structure for table goku_balance
E
eoLinker API Management 已提交
428
-- ----------------------------
Y
Your Name 已提交
429
CREATE INDEX "balanceName"
Y
Your Name 已提交
430 431 432
  ON "goku_balance" (
                     "balanceName" ASC
    );
E
eoLinker API Management 已提交
433 434

-- ----------------------------
Y
Your Name 已提交
435
-- Indexes structure for table goku_cluster
E
eoLinker API Management 已提交
436
-- ----------------------------
Y
Your Name 已提交
437
CREATE INDEX "name"
Y
Your Name 已提交
438 439 440
  ON "goku_cluster" (
                     "name" ASC
    );
E
eoLinker API Management 已提交
441 442

-- ----------------------------
Y
Your Name 已提交
443
-- Auto increment value for goku_config_log
E
eoLinker API Management 已提交
444 445 446
-- ----------------------------

-- ----------------------------
Y
Your Name 已提交
447
-- Auto increment value for goku_gateway_strategy_group
E
eoLinker API Management 已提交
448
-- ----------------------------
Y
Your Name 已提交
449
UPDATE "sqlite_sequence" SET seq = 1 WHERE name = 'goku_gateway_strategy_group';
E
eoLinker API Management 已提交
450 451

-- ----------------------------
Y
Your Name 已提交
452
-- Auto increment value for goku_plugin
E
eoLinker API Management 已提交
453
-- ----------------------------
Y
Your Name 已提交
454
UPDATE "sqlite_sequence" SET seq = 30 WHERE name = 'goku_plugin';
E
eoLinker API Management 已提交
455

Y
Your Name 已提交
456
PRAGMA foreign_keys = true;