view plugins/calendar/drivers/database/SQL/postgres/2013042700.sql @ 35:05c4c32948af

.hgignore: add vendor tree composer.json: new packages plugins/thunderbird_labels/thunderbird_labels.php: change hook and RFC822 use wrt whitelisting to avoid deprecated stuff index.php: commented debugging hooks others: new releases of vendor packages?
author Charlie Root
date Thu, 30 Aug 2018 16:21:59 -0400
parents f6fe4b6ae66a
children
line wrap: on
line source

ALTER SEQUENCE calendar_ids RENAME TO calendars_seq;
ALTER TABLE calendars ALTER COLUMN calendar_id SET DEFAULT nextval('calendars_seq'::text);

ALTER SEQUENCE event_ids RENAME TO events_seq;
ALTER TABLE events ALTER COLUMN event_id SET DEFAULT nextval('events_seq'::text);

ALTER SEQUENCE attachment_ids RENAME TO attachments_seq;
ALTER TABLE attachments ALTER COLUMN attachment_id SET DEFAULT nextval('attachments_seq'::text);