1
0
Fork 0
mirror of https://github.com/DanielnetoDotCom/YouPHPTube synced 2025-10-04 10:19:24 +02:00
Oinktube/plugin/Live/install/updateV2.0.sql
daniel 5db857b422 https://github.com/WWBN/AVideo/issues/2636#issuecomment-586584216
Version 8.5 to have the filesize for each video
2020-02-15 09:28:27 -03:00

16 lines
No EOL
525 B
SQL

CREATE TABLE IF NOT EXISTS `live_transmitions_history` (
`id` INT NOT NULL AUTO_INCREMENT,
`title` VARCHAR(255) NULL,
`description` TEXT NULL,
`key` VARCHAR(255) NOT NULL,
`created` DATETIME NULL,
`modified` DATETIME NULL,
`users_id` INT(11) NOT NULL,
PRIMARY KEY (`id`),
INDEX `fk_live_transmitions_history_users_idx` (`users_id` ASC),
CONSTRAINT `fk_live_transmitions_history_users`
FOREIGN KEY (`users_id`)
REFERENCES `users` (`id`)
ON DELETE CASCADE
ON UPDATE CASCADE)
ENGINE = InnoDB