Files
old-svevijesti/db/migrations/20220206054902_create_articles.up.sql
2022-02-10 21:11:13 +01:00

17 lines
363 B
PL/PgSQL

BEGIN;
CREATE TABLE "articles" (
"id" bigint GENERATED ALWAYS AS IDENTITY,
"title" text NOT NULL UNIQUE,
"content" text NOT NULL,
"slug" text NOT NULL UNIQUE,
"created_at" timestamptz DEFAULT NOW() NOT NULL,
"original_url" text NOT NULL UNIQUE,
"source_id" int NOT NULL,
CONSTRAINT "articles_pk" PRIMARY KEY ("id")
) WITH (
OIDS=FALSE
);
COMMIT;