I tuoi dati verranno sincronizzati nel tuo progetto Supabase e saranno accessibili da qualsiasi dispositivo. Prima di connettere, crea le tabelle con lo schema qui sotto.
Schema SQL — incolla nel SQL Editor di Supabase e clicca Run
Mostra / nascondi schema ▾
create table if not exists dale_nodes (
id text primary key, name text not null default '',
role text default '', color text default '#2B5BE8',
tags jsonb default '[]'::jsonb, notes text default '',
x float8 default 0, y float8 default 0,
vx float8 default 0, vy float8 default 0,
pinned boolean default false, created_at timestamptz default now()
);
create table if not exists dale_edges (
id text primary key, source_id text not null,
target_id text not null, label text default '',
type text default 'forte', created_at timestamptz default now()
);
create table if not exists dale_meta (key text primary key, value jsonb);
alter table dale_nodes disable row level security;
alter table dale_edges disable row level security;
alter table dale_meta disable row level security;