Skip to content

Latest commit

 

History

History
20 lines (15 loc) · 513 Bytes

README.md

File metadata and controls

20 lines (15 loc) · 513 Bytes

supabase-bodega

A Bodega storage implementation backed by Supabase.

Getting Started

Creating PostgreSQL schema

create table tests (
    key text primary key not null,
    data text not null,
    created_at timestamp with time zone default timezone('utc'::text, now()) not null,
    updated_at timestamp with time zone default timezone('utc'::text, now()) not null
);

create trigger handle_updated_at
    before update on tests for each row
    execute procedure moddatetime (updated_at);