Semaphore/db/sql/migrations/v1.4.0.sql
2021-11-13 15:10:09 +05:00

12 lines
322 B
SQL

CREATE TABLE `event` (
`project_id` int DEFAULT NULL,
`object_id` int DEFAULT NULL,
`object_type` varchar(20) DEFAULT '',
`description` text,
`created` datetime NOT NULL
);
alter table `task` add `created` datetime null;
alter table `task` add `start` datetime null;
alter table `task` add `end` datetime null;