hiling_go/db/migrations/000010_create_news_event_table.up.sql

13 lines
424 B
MySQL
Raw Permalink Normal View History

2023-10-11 16:31:52 +07:00
CREATE TABLE news_events (
"id" serial primary key not null,
"title" varchar not null,
"url" varchar not null,
"source" varchar not null,
"thumbnail" varchar,
"description" text,
"is_deleted" boolean not null default(false),
"submitted_by" int references "users"("id") not null,
"approved_by" int references "users"("id"),
"created_at" timestamp default(now()),
"updated_at" timestamp default(now())
)