Skip to content

Commit

Permalink
fix: auto generation
Browse files Browse the repository at this point in the history
  • Loading branch information
Thundernerd committed May 11, 2024
1 parent 3af4814 commit d4d2b5f
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions Models/Level.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ namespace TNRD.Zeepkist.GTR.Database.Models;
public partial class Level
{
[Key]
[DatabaseGenerated(DatabaseGeneratedOption.Identity)]
[Column("id")]
public int Id { get; set; }

Expand Down
1 change: 1 addition & 0 deletions Models/Metadata.cs
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ public partial class Metadata
public int Skybox { get; set; }

[Key]
[DatabaseGenerated(DatabaseGeneratedOption.Identity)]
[Column("id")]
public int Id { get; set; }

Expand Down
1 change: 1 addition & 0 deletions Models/Request.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ namespace TNRD.Zeepkist.GTR.Database.Models;
public partial class Request
{
[Key]
[DatabaseGenerated(DatabaseGeneratedOption.Identity)]
[Column("id")]
public int Id { get; set; }

Expand Down
2 changes: 1 addition & 1 deletion Zeepkist.GTR.Database.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<Nullable>enable</Nullable>
<AssemblyName>TNRD.Zeepkist.GTR.Database</AssemblyName>
<RootNamespace>TNRD.Zeepkist.GTR.Database</RootNamespace>
<Version>4.0.0</Version>
<Version>4.0.1</Version>
</PropertyGroup>

<ItemGroup>
Expand Down

0 comments on commit d4d2b5f

Please sign in to comment.