Files
HKSingleParty/99_references/supabase-examples/realtime/flutter-figma-clone/supabase/migrations/20240118161520_canvas.sql
2025-05-28 09:55:51 +08:00

7 lines
209 B
SQL

create table canvas_objects (
id uuid primary key default gen_random_uuid() not null,
"object" jsonb not null,
created_at timestamp with time zone default timezone('utc'::text, now()) not null
);