-
-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Database updates to handle new data coming from IGDB
- Loading branch information
1 parent
aba6e24
commit 54abbce
Showing
7 changed files
with
25 additions
and
32 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
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,41 +1,15 @@ | ||
{ | ||
"$schema": "https://json.schemastore.org/launchsettings.json", | ||
"iisSettings": { | ||
"windowsAuthentication": false, | ||
"anonymousAuthentication": true, | ||
"iisExpress": { | ||
"applicationUrl": "http://localhost:38715", | ||
"sslPort": 44314 | ||
} | ||
}, | ||
"profiles": { | ||
"http": { | ||
"commandName": "Project", | ||
"launchBrowser": true, | ||
"launchUrl": "swagger", | ||
"launchUrl": "/", | ||
"applicationUrl": "http://localhost:5198", | ||
"environmentVariables": { | ||
"ASPNETCORE_ENVIRONMENT": "Development" | ||
}, | ||
"dotnetRunMessages": true | ||
}, | ||
"https": { | ||
"commandName": "Project", | ||
"launchBrowser": true, | ||
"launchUrl": "swagger", | ||
"applicationUrl": "https://localhost:7282;http://localhost:5198", | ||
"environmentVariables": { | ||
"ASPNETCORE_ENVIRONMENT": "Development" | ||
}, | ||
"dotnetRunMessages": true | ||
}, | ||
"IIS Express": { | ||
"commandName": "IISExpress", | ||
"launchBrowser": true, | ||
"launchUrl": "swagger", | ||
"environmentVariables": { | ||
"ASPNETCORE_ENVIRONMENT": "Development" | ||
} | ||
} | ||
} | ||
} |
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,17 @@ | ||
ALTER TABLE `Collection` | ||
ADD COLUMN `AsParentRelations` LONGTEXT NULL AFTER `Id`, | ||
ADD COLUMN `AsChildRelations` LONGTEXT NULL AFTER `AsParentRelations`, | ||
ADD COLUMN `Type` INT NULL AFTER `UpdatedAt`; | ||
|
||
ALTER TABLE `Cover` | ||
ADD COLUMN `GameLocalization` BIGINT NULL AFTER `Game`; | ||
|
||
ALTER TABLE `Game` | ||
ADD COLUMN `Collections` LONGTEXT NULL AFTER `Collection`, | ||
ADD COLUMN `ExpandedGames` LONGTEXT NULL AFTER `Dlcs`, | ||
ADD COLUMN `Forks` LONGTEXT NULL AFTER `Follows`, | ||
ADD COLUMN `GameLocalizations` LONGTEXT NULL AFTER `GameEngines`, | ||
ADD COLUMN `LanguageSupports` LONGTEXT NULL AFTER `Keywords`, | ||
ADD COLUMN `Ports` LONGTEXT NULL AFTER `PlayerPerspectives`, | ||
ADD COLUMN `Remakes` LONGTEXT NULL AFTER `ReleaseDates`, | ||
ADD COLUMN `Remasters` LONGTEXT NULL AFTER `Remakes`; |
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