Compare commits

..

3 commits

Author SHA1 Message Date
Simon Bruder eed82278b3
Improve page title layout with long titles
All checks were successful
/ build (push) Successful in 26s
2024-07-24 12:40:42 +02:00
Simon Bruder 026f13e7e0
Use clap for configuration 2024-07-24 12:20:22 +02:00
Simon Bruder 2eb3b505e0
Add item state 2024-07-24 12:20:19 +02:00

View file

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