mirror of https://github.com/rocboss/paopao-ce
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
359 B
16 lines
359 B
1 year ago
|
CREATE TABLE "p_following" (
|
||
|
"id" integer NOT NULL,
|
||
|
"user_id" integer NOT NULL,
|
||
|
"follow_id" integer NOT NULL,
|
||
|
"is_del" integer NOT NULL,
|
||
|
"created_on" integer NOT NULL,
|
||
|
"modified_on" integer NOT NULL,
|
||
|
"deleted_on" integer NOT NULL,
|
||
|
PRIMARY KEY ("id")
|
||
|
);
|
||
|
CREATE INDEX "idx_following_user_follow"
|
||
|
ON "p_following" (
|
||
|
"user_id" ASC,
|
||
|
"follow_id" ASC
|
||
|
);
|