๐Ÿ‘ฉโ€๐Ÿš’ Firefighters API written in Gleam!
lustre gleam

:card_file_box: add "crew_name" field

+1 -1
+1 -1
sql/create/tables.sql
··· 26 id uuid default uuidv7(), 27 crew_leader uuid not null references user_account (id) 28 on update cascade on delete cascade, 29 is_active boolean not null default false, 30 created_at timestamp not null default current_timestamp, 31 updated_at timestamp not null default current_timestamp, ··· 33 ); 34 35 create index idx_crew_leader on crew (crew_leader); 36 - 37 38 create table crew_membership ( 39 id uuid default uuidv7(),
··· 26 id uuid default uuidv7(), 27 crew_leader uuid not null references user_account (id) 28 on update cascade on delete cascade, 29 + crew_name text unique not null, 30 is_active boolean not null default false, 31 created_at timestamp not null default current_timestamp, 32 updated_at timestamp not null default current_timestamp, ··· 34 ); 35 36 create index idx_crew_leader on crew (crew_leader); 37 38 create table crew_membership ( 39 id uuid default uuidv7(),