Merge branch 'master' of github.com:DAViCal/davical into github
[davical.git] / dba / patches / 1.2.4.sql
blob868d28143986a8ad62fbde448703aadeecac08b0
2 -- This database update provides new tables for the Principal, for
3 -- a consistent dav_resource which a principal, collection or calendar_item
4 -- all inherit from.
6 BEGIN;
7 SELECT check_db_revision(1,2,3);
9 -- Add a column to hold the 'COMPLETED' property from the caldav_data
10 ALTER TABLE calendar_item ADD COLUMN completed TIMESTAMP WITH TIME ZONE;
12 SELECT new_db_revision(1,2,4, 'Avril' );
14 COMMIT;
15 ROLLBACK;