Sun
Mon
Tue
Wed
Thu
Fri
Sat
alter table posts add column if not exists platforms text;create table posts (
id text primary key,
title text,
platform text,
platforms text,
status text not null,
date text,
assignee text,
caption text,
notes text,
created_at bigint,
updated_at bigint
);
alter table posts enable row level security;
create policy "Team access" on posts
for all using (true) with check (true);