-
-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #523 from jsdelivr/dash-db
refactor: rename dash DB
- Loading branch information
Showing
8 changed files
with
15 additions
and
11 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 |
---|---|---|
@@ -1,5 +1,9 @@ | ||
CREATE DATABASE IF NOT EXISTS directus; | ||
GRANT ALL PRIVILEGES ON directus.* to 'directus'@'%'; | ||
CREATE DATABASE IF NOT EXISTS `dashboard-globalping`; | ||
GRANT ALL PRIVILEGES ON `dashboard-globalping`.* to 'directus'@'%'; | ||
|
||
CREATE DATABASE IF NOT EXISTS `directus-test`; | ||
GRANT ALL PRIVILEGES ON `directus-test`.* to 'directus'@'%'; | ||
CREATE DATABASE IF NOT EXISTS `dashboard-globalping-test`; | ||
GRANT ALL PRIVILEGES ON `dashboard-globalping-test`.* to 'directus'@'%'; | ||
|
||
-- Directus issue https://github.com/directus/directus/discussions/11786 | ||
ALTER DATABASE `dashboard-globalping` CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci; | ||
ALTER DATABASE `dashboard-globalping-test` CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci; |
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
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