Skip to content

Commit 5aac7e5

Browse files
committed
add spoiler field
1 parent c7332c9 commit 5aac7e5

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

PEngine.Schema/tables.sql

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,8 @@ CREATE TABLE IF NOT EXISTS "Posts" (
7272
"Encrypted" BOOLEAN default false,
7373
"Keyring" uuid,
7474

75+
"Spoiler" BOOLEAN NOT NULL default false,
76+
7577
PRIMARY KEY ("Id")
7678
);
7779

@@ -90,6 +92,8 @@ CREATE TABLE IF NOT EXISTS "Comments" (
9092

9193
"Content" varchar(500),
9294

95+
"Spoiler" BOOLEAN NOT NULL default false,
96+
9397
"Encrypted" BOOLEAN default false,
9498
"Keyring" uuid,
9599

0 commit comments

Comments
 (0)