Update Core #44

Merged
magicfelix merged 1 commit from update-core-birthday-recurrence into master 2025-12-06 18:46:56 +01:00
magicfelix commented 2025-12-06 18:43:40 +01:00 (Migrated from edugit.org)

Benötigt folgende Migrationen:

ALTER VIEW core_birthdayevent RENAME COLUMN dt_start TO date_start;
CREATE OR REPLACE VIEW core_birthdayevent AS
    SELECT id,
    id AS person_id,
    date_of_birth AS date_start,
    'FREQ=YEARLY' AS rrule,
    date_of_birth AS date_end,
    NULL AS timezone,
    NULL::timestamp AS datetime_start,
    NULL::timestamp AS datetime_end,
    '{}'::date[] AS rdates,
    '{}'::timestamp[] AS rdatetimes,
    '{}'::date[] AS exdates,
    '{}'::date[] AS exdatetimes,
    '{}'::timestamp[] AS recurrences,
    NULL::timestamp AS rrule_until,
    NULL::bigint AS amends_id
    FROM core_person
    WHERE date_of_birth IS NOT NULL;
Benötigt folgende Migrationen: ``` ALTER VIEW core_birthdayevent RENAME COLUMN dt_start TO date_start; ``` ``` CREATE OR REPLACE VIEW core_birthdayevent AS SELECT id, id AS person_id, date_of_birth AS date_start, 'FREQ=YEARLY' AS rrule, date_of_birth AS date_end, NULL AS timezone, NULL::timestamp AS datetime_start, NULL::timestamp AS datetime_end, '{}'::date[] AS rdates, '{}'::timestamp[] AS rdatetimes, '{}'::date[] AS exdates, '{}'::date[] AS exdatetimes, '{}'::timestamp[] AS recurrences, NULL::timestamp AS rrule_until, NULL::bigint AS amends_id FROM core_person WHERE date_of_birth IS NOT NULL; ```
magicfelix commented 2025-12-06 18:43:40 +01:00 (Migrated from edugit.org)

assigned to @debdolph

assigned to @debdolph
debdolph commented 2025-12-06 18:46:55 +01:00 (Migrated from edugit.org)

mentioned in commit 380ee6e992

mentioned in commit 380ee6e992b71cbf93fdc07ed711d845ac2e9932
debdolph (Migrated from edugit.org) merged commit 380ee6e992 into master 2025-12-06 18:46:57 +01:00
Sign in to join this conversation.
No reviewers
No labels
Doing
To Do
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
teckids/ticdesk!44
No description provided.