7 lines
265 B
SQL
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
|
|
); |