learn_flutter_supabase

Learn Flutter Supabase Auth, CRUD Database, Chat app

Stars
1
Committers
2

learn_flutter_supabase

- Create Table Example :

create table products (
  id bigint primary key generated always as identity,
  name text not null
);

-- Insert some sample data into the table
insert into products (name)
values
  ('Bagpack'),
  ('Tracking Pole'),
  ('Dome Tent');

alter table products enable row level security;

- Setup table to public :

on public.products
for select to anon
using (true);
Related Projects