Compare commits

..

3 commits

Author SHA1 Message Date
Simon Bruder c2626cc138
Improve page title layout with long titles
All checks were successful
/ build (push) Successful in 26s
2024-07-24 16:29:26 +02:00
Simon Bruder 1f852ef219
Use clap for configuration 2024-07-24 16:29:25 +02:00
Simon Bruder bcbb7dfc67
Add item state 2024-07-24 16:29:22 +02:00

View file

@ -141,6 +141,8 @@ RETURNS TRIGGER AS $$
BEGIN BEGIN
INSERT INTO item_events (item, event, description) INSERT INTO item_events (item, event, description)
VALUES (NEW.id, 'acquire', 'automatically added on item insert'); VALUES (NEW.id, 'acquire', 'automatically added on item insert');
RETURN NEW;
END; END;
$$ LANGUAGE plpgsql; $$ LANGUAGE plpgsql;