oswilno/migrations/20220712193614_create_news.sql

16 lines
421 B
MySQL
Raw Permalink Normal View History

2022-07-13 14:54:19 +02:00
CREATE TYPE "NewsStatus" AS ENUM (
'Pending',
'Published',
'Hidden'
);
CREATE TABLE news
(
id serial unique not null primary key,
title text not null unique,
body text not null,
status "NewsStatus" not null default 'Pending',
published_at timestamp not null default now(),
created_at timestamp not null default now()
);