Nothing here yet.
Create a initiative to start tracking your launch.
create table runway_initiatives ( id text primary key, sort_order integer default 0, name text default '', client text default '', owner text default '', deadline text default '', tasks jsonb default '[]', created_at timestamptz default now() ); alter table runway_initiatives enable row level security; create policy "public access" on runway_initiatives for all using (true);
Create a initiative to start tracking your launch.