/usr/share/planner/sql/upgrade-0.6.x-0.11.sql is in planner-data 0.14.6-3ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 | -- Planner Database Schema Upgrade from 0.6.x to 0.11
-- Lincoln Phipps <lincoln.phipps@openmutual.net>
-- Copyright 2004 Lincoln Phipps
--
-- Resource Schema Changes from 0.6.x to 0.11
--
ALTER TABLE resource ADD COLUMN short_name text;
ALTER TABLE task ADD COLUMN priority integer;
ALTER TABLE task ALTER COLUMN priority SET DEFAULT 0;
ALTER TABLE task ADD CHECK (priority > -1 AND priority < 10000);
|