-
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.
updated schema with new column; augmented ci validation with new field
- Loading branch information
Showing
2 changed files
with
6 additions
and
3 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 |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
* Zookeeper Online | ||
* | ||
* @author Jim Mason <[email protected]> | ||
* @copyright Copyright (C) 1997-2023 Jim Mason <[email protected]> | ||
* @copyright Copyright (C) 1997-2024 Jim Mason <[email protected]> | ||
* @link https://zookeeper.ibinx.com/ | ||
* @license GPL-3.0 | ||
* | ||
|
@@ -464,7 +464,8 @@ public function validateLibrary() { | |
'coll' => false, | ||
'tracks' => [ | ||
[ | ||
'track' => 'TEST track 1' | ||
'track' => 'TEST track 1', | ||
'duration' => '00:01:23' | ||
],[ | ||
'track' => 'TEST track 2' | ||
] | ||
|
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 |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
* Zookeeper Online | ||
* | ||
* @author Jim Mason <[email protected]> | ||
* @copyright Copyright (C) 1997-2023 Jim Mason <[email protected]> | ||
* @copyright Copyright (C) 1997-2024 Jim Mason <[email protected]> | ||
* @link https://zookeeper.ibinx.com/ | ||
* @license GPL-3.0 | ||
* | ||
|
@@ -192,6 +192,7 @@ CREATE TABLE IF NOT EXISTS `colltracknames` ( | |
`artist` varchar(80) DEFAULT NULL, | ||
`url` varchar(2083) NOT NULL DEFAULT '', | ||
`seq` smallint(6) DEFAULT NULL, | ||
`duration` time DEFAULT NULL, | ||
PRIMARY KEY (`id`), | ||
KEY `tag` (`tag`), | ||
KEY `track` (`track`), | ||
|
@@ -412,6 +413,7 @@ CREATE TABLE IF NOT EXISTS `tracknames` ( | |
`track` varchar(80) DEFAULT NULL, | ||
`url` varchar(2083) NOT NULL DEFAULT '', | ||
`seq` smallint(6) DEFAULT NULL, | ||
`duration` time DEFAULT NULL, | ||
PRIMARY KEY (`id`), | ||
KEY `tag` (`tag`), | ||
KEY `track` (`track`), | ||
|