added milestone_project table to current.sql
This commit is contained in:
parent
4f61e9eb54
commit
1e63cf9252
@ -0,0 +1,13 @@
|
||||
CREATE TABLE `milestone_project` (
|
||||
`id` bigint(20) NOT NULL AUTO_INCREMENT,
|
||||
`dateCreated` datetime NOT NULL,
|
||||
`lastModified` datetime NOT NULL,
|
||||
`version` int(11) NOT NULL,
|
||||
`confirmed` tinyint(1) NOT NULL,
|
||||
`dateConfirmed` datetime NOT NULL,
|
||||
`activity` varchar(255) NOT NULL,
|
||||
`project_id` bigint(20) DEFAULT NULL,
|
||||
PRIMARY KEY (`id`),
|
||||
KEY `FK36B9B4AC1813915` (`project_id`),
|
||||
CONSTRAINT `FK36B9B4AC1813915` FOREIGN KEY (`project_id`) REFERENCES `project` (`id`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
|
Loading…
x
Reference in New Issue
Block a user