/usr/share/planner/sql/upgrade-0.11-0.13.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 update
-- Alvaro del Castillo <acs@barrapunto.com>
--
-- New table to store global properties for Planner
-- Actually (0.13) it is used to store the database version
CREATE TABLE property_global (
prop_id serial,
prop_name text NOT NULL,
value text,
PRIMARY KEY (prop_id)
);
|