forked from WWBN/AVideo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
daniel
authored and
daniel
committed
Nov 22, 2017
1 parent
ba67112
commit 901c68f
Showing
15 changed files
with
17,720 additions
and
766 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
<?php | ||
|
||
$installationVersion = "4.3"; | ||
$installationVersion = "4.4"; | ||
|
||
header('Content-Type: application/json'); | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
-- MySQL Workbench Synchronization | ||
-- Generated: 2017-10-05 11:15 | ||
-- Model: New Model | ||
-- Version: 1.0 | ||
-- Project: Name of the project | ||
-- Author: Daniel | ||
|
||
SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0; | ||
SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0; | ||
SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='TRADITIONAL,ALLOW_INVALID_DATES'; | ||
|
||
|
||
ALTER TABLE `videos` | ||
ADD COLUMN `next_videos_id` INT(11) NOT NULL AFTER `videoLink`, | ||
ADD INDEX `fk_videos_videos1_idx` (`next_videos_id` ASC); | ||
|
||
ALTER TABLE `playlists_has_videos` | ||
ADD COLUMN `order` INT(11) NULL DEFAULT NULL AFTER `videos_id`; | ||
|
||
SET SQL_MODE=@OLD_SQL_MODE; | ||
SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS; | ||
SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS; | ||
|
||
|
||
UPDATE configurations SET version = '4.4', modified = now() WHERE id = 1; |
Oops, something went wrong.