mirror of
https://github.com/pacnpal/thrilltrack-explorer.git
synced 2025-12-24 23:51:13 -05:00
Add "opening" timeline event type
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
-- Add 'opening' to timeline event types
|
||||
ALTER TABLE public.entity_timeline_events
|
||||
DROP CONSTRAINT entity_timeline_events_event_type_check;
|
||||
|
||||
ALTER TABLE public.entity_timeline_events
|
||||
ADD CONSTRAINT entity_timeline_events_event_type_check
|
||||
CHECK (event_type IN (
|
||||
'name_change',
|
||||
'operator_change',
|
||||
'owner_change',
|
||||
'location_change',
|
||||
'status_change',
|
||||
'opening',
|
||||
'closure',
|
||||
'reopening',
|
||||
'renovation',
|
||||
'expansion',
|
||||
'acquisition',
|
||||
'milestone',
|
||||
'other'
|
||||
));
|
||||
Reference in New Issue
Block a user