/usr/share/planner/sql/database-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 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 | -- $Id$
-- Planner Database Schema
-- Daniel Lundin <daniel@codefactory.se>
-- Richard Hult <richard@imendio.com>
-- Copyright 2003 CodeFactory AB
--
-- Project
--
CREATE TABLE project (
proj_id serial,
name text NOT NULL,
company text,
manager text,
proj_start date NOT NULL DEFAULT CURRENT_TIMESTAMP,
cal_id integer,
phase text,
default_group_id integer,
revision integer,
last_user text NOT NULL DEFAULT (user),
PRIMARY KEY (proj_id)
);
--
-- Phases
--
CREATE TABLE phase (
phase_id serial,
proj_id integer,
name text NOT NULL,
FOREIGN KEY (proj_id) REFERENCES project (proj_id)
ON DELETE CASCADE ON UPDATE CASCADE,
PRIMARY KEY (phase_id)
);
--
-- Day Types
--
CREATE TABLE daytype (
dtype_id serial,
proj_id integer,
name text,
descr text,
is_work boolean NOT NULL DEFAULT FALSE,
is_nonwork boolean NOT NULL DEFAULT FALSE,
UNIQUE (proj_id, name),
FOREIGN KEY (proj_id) REFERENCES project (proj_id)
ON DELETE CASCADE ON UPDATE CASCADE,
PRIMARY KEY (dtype_id)
);
--
-- Calendar
--
CREATE TABLE calendar (
cal_id serial,
proj_id integer,
parent_cid integer,
name text,
day_mon integer DEFAULT NULL,
day_tue integer DEFAULT NULL,
day_wed integer DEFAULT NULL,
day_thu integer DEFAULT NULL,
day_fri integer DEFAULT NULL,
day_sat integer DEFAULT NULL,
day_sun integer DEFAULT NULL,
FOREIGN KEY (proj_id) REFERENCES project (proj_id)
ON DELETE CASCADE ON UPDATE CASCADE,
FOREIGN KEY (day_mon) REFERENCES daytype (dtype_id)
ON DELETE SET DEFAULT ON UPDATE CASCADE
DEFERRABLE INITIALLY DEFERRED,
FOREIGN KEY (day_tue) REFERENCES daytype (dtype_id)
ON DELETE SET DEFAULT ON UPDATE CASCADE
DEFERRABLE INITIALLY DEFERRED,
FOREIGN KEY (day_wed) REFERENCES daytype (dtype_id)
ON DELETE SET DEFAULT ON UPDATE CASCADE
DEFERRABLE INITIALLY DEFERRED,
FOREIGN KEY (day_thu) REFERENCES daytype (dtype_id)
ON DELETE SET DEFAULT ON UPDATE CASCADE
DEFERRABLE INITIALLY DEFERRED,
FOREIGN KEY (day_fri) REFERENCES daytype (dtype_id)
ON DELETE SET DEFAULT ON UPDATE CASCADE
DEFERRABLE INITIALLY DEFERRED,
FOREIGN KEY (day_sat) REFERENCES daytype (dtype_id)
ON DELETE SET DEFAULT ON UPDATE CASCADE
DEFERRABLE INITIALLY DEFERRED,
FOREIGN KEY (day_sun) REFERENCES daytype (dtype_id)
ON DELETE SET DEFAULT ON UPDATE CASCADE
DEFERRABLE INITIALLY DEFERRED,
FOREIGN KEY (parent_cid) REFERENCES calendar (cal_id)
ON DELETE SET NULL ON UPDATE CASCADE,
PRIMARY KEY (cal_id)
);
ALTER TABLE project ADD CONSTRAINT project_cal_id
FOREIGN KEY (cal_id) REFERENCES calendar (cal_id)
ON DELETE CASCADE ON UPDATE CASCADE DEFERRABLE INITIALLY DEFERRED;
--
-- Day
--
CREATE TABLE day (
day_id serial,
cal_id integer,
dtype_id integer,
date date,
FOREIGN KEY (dtype_id) REFERENCES daytype (dtype_id)
ON DELETE CASCADE ON UPDATE CASCADE,
FOREIGN KEY (cal_id) REFERENCES calendar (cal_id)
ON DELETE CASCADE ON UPDATE CASCADE,
PRIMARY KEY (day_id)
);
--
-- Day (working) Interval
--
CREATE TABLE day_interval (
cal_id integer,
dtype_id integer,
start_time time with time zone,
end_time time with time zone,
FOREIGN KEY (dtype_id) REFERENCES daytype (dtype_id)
ON DELETE CASCADE ON UPDATE CASCADE DEFERRABLE,
FOREIGN KEY (cal_id) REFERENCES calendar (cal_id)
ON DELETE CASCADE ON UPDATE CASCADE,
PRIMARY KEY (dtype_id, cal_id, start_time, end_time)
);
--
-- Task
--
CREATE TABLE task (
task_id serial,
parent_id integer,
proj_id integer,
name text NOT NULL,
note text,
start timestamp with time zone,
finish timestamp with time zone,
work integer DEFAULT 0,
duration integer DEFAULT 0,
percent_complete integer DEFAULT 0,
priority integer DEFAULT 0,
is_milestone boolean NOT NULL DEFAULT FALSE,
is_fixed_work boolean NOT NULL DEFAULT TRUE,
constraint_type text NOT NULL DEFAULT 'ASAP',
constraint_time timestamp with time zone,
CHECK (constraint_type = 'ASAP' OR constraint_type = 'MSO' OR constraint_type = 'FNLT' OR constraint_type = 'SNET'),
CHECK (percent_complete > -1 AND percent_complete < 101),
CHECK (priority > -1 AND priority < 10000),
FOREIGN KEY (proj_id) REFERENCES project (proj_id)
ON DELETE CASCADE ON UPDATE CASCADE,
FOREIGN KEY (parent_id) REFERENCES task (task_id)
ON DELETE SET NULL ON UPDATE CASCADE,
PRIMARY KEY (task_id)
);
-- FIXME: Add triggers to handle different types of tasks/milestones
--
-- Predecessor (tasks)
--
CREATE TABLE predecessor (
task_id integer NOT NULL,
pred_task_id integer NOT NULL,
pred_id serial,
type text NOT NULL DEFAULT 'FS',
lag integer DEFAULT 0,
CHECK (type = 'FS' OR type = 'FF' OR type = 'SS' OR type = 'SF'),
UNIQUE (pred_id),
FOREIGN KEY (task_id) REFERENCES task (task_id)
ON DELETE CASCADE ON UPDATE CASCADE,
FOREIGN KEY (pred_task_id) REFERENCES task (task_id)
ON DELETE CASCADE ON UPDATE CASCADE,
PRIMARY KEY (task_id, pred_task_id)
);
--
-- Property types
--
CREATE TABLE property_type (
proptype_id serial,
proj_id integer,
name text NOT NULL,
label text NOT NULL,
type text NOT NULL DEFAULT 'text',
owner text NOT NULL DEFAULT 'project',
descr text,
CHECK (type = 'date' OR type = 'duration' OR type = 'float'
OR type = 'int' OR type = 'text' OR type = 'text-list'
OR type = 'cost'),
CHECK (owner = 'project' OR owner = 'task' OR owner = 'resource'),
UNIQUE (proj_id, name),
FOREIGN KEY (proj_id) REFERENCES project (proj_id)
ON DELETE CASCADE ON UPDATE CASCADE,
PRIMARY KEY (proptype_id)
);
--
-- Properties
--
CREATE TABLE property (
prop_id serial,
proptype_id integer NOT NULL,
value text,
FOREIGN KEY (proptype_id) REFERENCES property_type (proptype_id)
ON DELETE CASCADE ON UPDATE CASCADE,
PRIMARY KEY (prop_id)
);
--
-- Project properties
--
CREATE TABLE project_to_property (
proj_id integer,
prop_id integer,
FOREIGN KEY (proj_id) REFERENCES project (proj_id)
ON DELETE CASCADE ON UPDATE CASCADE,
FOREIGN KEY (prop_id) REFERENCES property (prop_id)
ON DELETE CASCADE ON UPDATE CASCADE,
PRIMARY KEY (proj_id, prop_id)
);
--
-- Task properties
--
CREATE TABLE task_to_property (
prop_id integer,
task_id integer,
FOREIGN KEY (task_id) REFERENCES task (task_id)
ON DELETE CASCADE ON UPDATE CASCADE,
FOREIGN KEY (prop_id) REFERENCES property (prop_id)
ON DELETE CASCADE ON UPDATE CASCADE,
PRIMARY KEY (task_id, prop_id)
);
--
-- Resource Group
--
CREATE TABLE resource_group (
group_id serial,
proj_id integer,
name text NOT NULL,
admin_name text,
admin_phone text,
admin_email text,
FOREIGN KEY (proj_id) REFERENCES project (proj_id)
ON DELETE CASCADE ON UPDATE CASCADE,
PRIMARY KEY (group_id)
);
--
-- Resource
--
CREATE TABLE resource (
res_id serial,
proj_id integer,
group_id integer,
name text,
short_name text,
email text,
note text,
is_worker boolean NOT NULL DEFAULT TRUE,
units real NOT NULL DEFAULT 1.0,
std_rate real NOT NULL DEFAULT 0.0,
ovt_rate real NOT NULL DEFAULT 0.0,
cal_id integer,
FOREIGN KEY (proj_id) REFERENCES project (proj_id)
ON DELETE CASCADE ON UPDATE CASCADE,
FOREIGN KEY (group_id) REFERENCES resource_group (group_id)
ON DELETE SET NULL ON UPDATE CASCADE,
FOREIGN KEY (cal_id) REFERENCES calendar (cal_id)
ON DELETE CASCADE ON UPDATE CASCADE,
PRIMARY KEY (res_id)
);
--
-- Resource properties
--
CREATE TABLE resource_to_property (
prop_id integer,
res_id integer,
FOREIGN KEY (res_id) REFERENCES resource (res_id)
ON DELETE CASCADE ON UPDATE CASCADE,
FOREIGN KEY (prop_id) REFERENCES property (prop_id)
ON DELETE CASCADE ON UPDATE CASCADE,
PRIMARY KEY (res_id, prop_id)
);
--
-- Allocations (of resources)
--
CREATE TABLE allocation (
task_id integer,
res_id integer,
units real NOT NULL DEFAULT 1.0,
FOREIGN KEY (res_id) REFERENCES resource (res_id)
ON DELETE CASCADE ON UPDATE CASCADE,
FOREIGN KEY (task_id) REFERENCES task (task_id)
ON DELETE CASCADE ON UPDATE CASCADE,
PRIMARY KEY (res_id, task_id)
);
--
-- Global planner properties
--
CREATE TABLE property_global (
prop_id serial,
prop_name text NOT NULL,
value text,
PRIMARY KEY (prop_id)
);
|