all repos

onasty @ 2cd7240e79ef685c68bf8ad11ef49daf1ddd9965

a one-time notes service

onasty/migrations/20240613092407_users.up.sql(view raw)

1
2
3
4
5
6
7
8
9
create table users (
  id uuid primary key default uuid_generate_v4(),
  username varchar(255) not null unique,
  email varchar(255) not null unique,
  password varchar(255) not null,
  activated boolean not null default false,
  created_at timestamptz not null default now(),
  last_login_at timestamptz not null default now()
);