Changed limit and added scrollbars on details

This commit is contained in:
Alexis
2024-11-25 16:33:02 +01:00
parent 372c7a49e1
commit 863937bb16
5 changed files with 33 additions and 21 deletions

View File

@@ -92,9 +92,9 @@ comment on table public.calendar_events is 'Events linked to a world';
alter table public.calendar_events
add constraint calendar_events_maxlen_check
check (
char_length(title) <= 240 AND
char_length(title) <= 120 AND
(description IS NULL OR char_length(description) <= 1200) AND
(location IS NULL OR char_length(location) <= 240)
(location IS NULL OR char_length(location) <= 160)
);
-- Link table for events - categories