PagΓ‘ seguro Β· RecibΓs tu libro al instante por email
Cargandoβ¦
create table if not exists books (
id text primary key,
title text not null,
authors text,
thumb text,
categories text,
publisher text,
year text,
price numeric not null default 0,
lemon_url text not null default '',
created_at timestamptz default now()
);
alter table books enable row level security;
create policy "lectura publica" on books for select using (true);
create policy "admin total" on books for all using (true);
index.html.