-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
added ability to play an album track from an associated URL closes #166
- Loading branch information
1 parent
b2f30a6
commit f501df7
Showing
8 changed files
with
242 additions
and
134 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
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,47 @@ | ||
/* | ||
* Zookeeper Online | ||
* | ||
* @author Jim Mason <[email protected]> | ||
* @copyright Copyright (C) 1997-2020 Jim Mason <[email protected]> | ||
* @link https://zookeeper.ibinx.com/ | ||
* @license GPL-3.0 | ||
* | ||
* This code is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU General Public License, version 3, | ||
* as published by the Free Software Foundation. | ||
* | ||
* This program is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
* GNU General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU General Public License, | ||
* version 3, along with this program. If not, see | ||
* http://www.gnu.org/licenses/ | ||
*/ | ||
|
||
/** | ||
* IMPORTANT NOTE: | ||
* | ||
* Run this script ONLY if you are converting an existing Zookeeper Online | ||
* v2_9_0 database for use with the current codebase. | ||
* | ||
* If you are creating a new database, run zkdbSchema.sql and then populate | ||
* the resulting db using the various bootstrap scripts as appropriate. | ||
*/ | ||
|
||
-- | ||
-- Database: `zkdb` | ||
-- | ||
|
||
SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT; | ||
SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS; | ||
SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION; | ||
SET NAMES utf8mb4; | ||
|
||
ALTER TABLE `tracknames` ADD COLUMN `url` varchar(2083) NOT NULL DEFAULT ''; | ||
ALTER TABLE `colltracknames` ADD COLUMN `url` varchar(2083) NOT NULL DEFAULT ''; | ||
|
||
SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT; | ||
SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS; | ||
SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION; |
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
Oops, something went wrong.