Files
HKSingleParty/99_references/supabase-examples/caching/with-nextjs-13/supabase/migrations/20221028100232_init.sql
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
);