const eventTypeEnum = pgEnum('event_type', [
'training',
'matchday',
'tournament',
'event',
'labour'
]);
// get the following as a result
type EventType = 'training' | 'matchday' | 'tournament' | 'event' | 'labour'
const eventTypeEnum = pgEnum('event_type', [
'training',
'matchday',
'tournament',
'event',
'labour'
]);
// get the following as a result
type EventType = 'training' | 'matchday' | 'tournament' | 'event' | 'labour'