Skip to content

Commit

Permalink
Expand the platform table name field to accomodate larger platform na…
Browse files Browse the repository at this point in the history
…mes (#397)

IGDB has recently added a new platform who's name exceeds 45 characters
(the maximum Name length in the Platform table). This change extends the
character length to 255 chars.
  • Loading branch information
michael-j-green authored Jul 17, 2024
1 parent 3366d92 commit 1672520
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions gaseous-server/Support/Database/MySQL/gaseous-1022.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
ALTER TABLE `Platform` CHANGE `Name` `Name` varchar(255);
2 changes: 2 additions & 0 deletions gaseous-server/gaseous-server.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@
<None Remove="Support\Database\MySQL\gaseous-1019.sql" />
<None Remove="Support\Database\MySQL\gaseous-1020.sql" />
<None Remove="Support\Database\MySQL\gaseous-1021.sql" />
<None Remove="Support\Database\MySQL\gaseous-1022.sql" />
<None Remove="Classes\Metadata\" />
</ItemGroup>
<ItemGroup>
Expand Down Expand Up @@ -108,5 +109,6 @@
<EmbeddedResource Include="Support\Database\MySQL\gaseous-1019.sql" />
<EmbeddedResource Include="Support\Database\MySQL\gaseous-1020.sql" />
<EmbeddedResource Include="Support\Database\MySQL\gaseous-1021.sql" />
<EmbeddedResource Include="Support\Database\MySQL\gaseous-1022.sql" />
</ItemGroup>
</Project>

0 comments on commit 1672520

Please sign in to comment.