Fixed test data
This commit is contained in:
parent
121e290d74
commit
5921a08b14
3 changed files with 1572 additions and 1572 deletions
|
|
@ -26,9 +26,9 @@ CREATE TABLE `Comments` (
|
|||
CREATE TABLE `Folder` (
|
||||
`id` int(10) UNSIGNED NOT NULL,
|
||||
`owner` int(10) UNSIGNED DEFAULT NULL,
|
||||
`path` text,
|
||||
`parent` int(10) UNSIGNED DEFAULT NULL,
|
||||
`date` datetime NOT NULL,
|
||||
`name` text,
|
||||
`dateCreated` datetime NOT NULL,
|
||||
`isPrivate` bit(1) DEFAULT b'0'
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
|
||||
|
||||
|
|
@ -91,7 +91,7 @@ CREATE TABLE `Video` (
|
|||
`owner` int(10) UNSIGNED NOT NULL,
|
||||
`title` varchar(55) DEFAULT NULL,
|
||||
`description` text,
|
||||
`dateUploaded` datetime DEFAULT NULL
|
||||
`dateUploaded` datetime DEFAULT NULL,
|
||||
`transcoded` tinyint(1) NOT NULL DEFAULT '0',
|
||||
`length` int(10) UNSIGNED NOT NULL DEFAULT '0'
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue