Remove single_view from schema.sql, migrator will create this

This commit is contained in:
domterion 2022-05-16 00:30:14 +00:00
parent fd6b91977b
commit de58aa84c2
1 changed files with 0 additions and 1 deletions

View File

@ -2,7 +2,6 @@ CREATE TABLE IF NOT EXISTS pastes (
"id" TEXT PRIMARY KEY,
"content" TEXT NOT NULL,
"views" BIGINT DEFAULT 0,
"single_view" BOOLEAN DEFAULT false,
"expires_at" TIMESTAMP WITHOUT TIME ZONE,
"created_at" TIMESTAMP WITHOUT TIME ZONE DEFAULT(NOW() AT TIME ZONE 'utc')
);