This repository has no description
lustre gleam
0

Configure Feed

Select the types of activity you want to include in your feed.

:card_file_box: add "updated_at" check

author
kacaii.dev
date (Apr 16, 2026, 9:19 AM -0300) commit 1381c89e parent f164a87a change-id mutyzlml
+3 -1
+3 -1
sql/create/tables.sql
··· 41 41 on update cascade on delete cascade, 42 42 crew_name text unique not null, 43 43 is_active boolean not null default true, 44 + 44 45 created_at timestamp not null default current_timestamp, 45 - updated_at timestamp not null default current_timestamp, 46 + updated_at timestamp not null default current_timestamp 47 + check (updated_at >= created_at), 46 48 47 49 primary key (id) 48 50 );