all repos

onasty @ 688ee30

a one-time notes service

onasty/migrations/20240716235210_notes.up.sql(view raw)

1
2
3
4
5
6
7
8
create table notes (
  id uuid primary key default uuid_generate_v4(),
  content text not null,
  slug varchar(255) not null unique,
  burn_before_expiration boolean default false,
  created_at timestamptz not null default now(),
  expires_at timestamptz
);