first commit
Some checks failed
Vulhub Format Check and Lint / format-check (push) Has been cancelled
Vulhub Format Check and Lint / markdown-check (push) Has been cancelled
Vulhub Docker Image CI / longtime-images-test (push) Has been cancelled
Vulhub Docker Image CI / images-test (push) Has been cancelled
Some checks failed
Vulhub Format Check and Lint / format-check (push) Has been cancelled
Vulhub Format Check and Lint / markdown-check (push) Has been cancelled
Vulhub Docker Image CI / longtime-images-test (push) Has been cancelled
Vulhub Docker Image CI / images-test (push) Has been cancelled
This commit is contained in:
28
node/CVE-2017-16082/db.sql
Normal file
28
node/CVE-2017-16082/db.sql
Normal file
@@ -0,0 +1,28 @@
|
||||
-- ----------------------------
|
||||
-- Table structure for user
|
||||
-- ----------------------------
|
||||
DROP TABLE IF EXISTS "public"."user";
|
||||
CREATE TABLE "public"."user" (
|
||||
"id" int4 NOT NULL,
|
||||
"name" varchar(255) COLLATE "default" NOT NULL,
|
||||
"score" int4 DEFAULT 0
|
||||
)
|
||||
WITH (OIDS=FALSE)
|
||||
|
||||
;
|
||||
|
||||
-- ----------------------------
|
||||
-- Records of user
|
||||
-- ----------------------------
|
||||
INSERT INTO "public"."user" VALUES ('1', 'zhang', '50');
|
||||
INSERT INTO "public"."user" VALUES ('2', 'wang', '90');
|
||||
INSERT INTO "public"."user" VALUES ('3', 'hu', '68');
|
||||
|
||||
-- ----------------------------
|
||||
-- Alter Sequences Owned By
|
||||
-- ----------------------------
|
||||
|
||||
-- ----------------------------
|
||||
-- Primary Key structure for table user
|
||||
-- ----------------------------
|
||||
ALTER TABLE "public"."user" ADD PRIMARY KEY ("id");
|
Reference in New Issue
Block a user