name TEXT NOT NULL,
description TEXT NOT NULL,
position INTEGER NOT NULL,
- itime TIMESTAMP DEFAULT 'now()',
+ itime TIMESTAMP DEFAULT now(),
mtime TIMESTAMP
);
budget_cost NUMERIC (15,5) NOT NULL DEFAULT 0,
general_minutes INTEGER NOT NULL DEFAULT 0,
general_cost_per_hour NUMERIC (15,5) NOT NULL DEFAULT 0,
- itime TIMESTAMP DEFAULT 'now()',
+ itime TIMESTAMP DEFAULT now(),
mtime TIMESTAMP
);
name TEXT NOT NULL,
description TEXT NOT NULL,
position INTEGER NOT NULL,
- itime TIMESTAMP DEFAULT 'now()',
+ itime TIMESTAMP DEFAULT now(),
mtime TIMESTAMP
);
project_role_id INTEGER NOT NULL REFERENCES project_roles(id),
minutes INTEGER NOT NULL DEFAULT 0,
cost_per_hour NUMERIC (15,5),
- itime TIMESTAMP DEFAULT 'now()',
+ itime TIMESTAMP DEFAULT now(),
mtime TIMESTAMP
);
project_role_id INTEGER NOT NULL REFERENCES project_roles(id),
minutes INTEGER NOT NULL DEFAULT 0,
cost_per_hour NUMERIC (15,5),
- itime TIMESTAMP DEFAULT 'now()',
+ itime TIMESTAMP DEFAULT now(),
mtime TIMESTAMP
);