PagΓ‘ seguro con tarjeta Β· RecibΓs tu libro al instante
Cargandoβ¦
create table books (
id text primary key,
title text not null,
authors text,
thumb text,
categories text,
price numeric not null,
lemon_url text not null,
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.