Files
2025-05-28 09:55:51 +08:00

7 lines
265 B
SQL

create table if not exists articles (
id uuid default gen_random_uuid() primary key,
created_at timestamp with time zone default timezone('utc'::text, now()) not null,
title text not null,
content text not null,
is_published bool default false not null
);