mirror of
https://github.com/semaphoreui/semaphore.git
synced 2024-11-23 12:30:41 +01:00
12 lines
322 B
SQL
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;
|