Skip to content

Commit

Permalink
🐛 Fixed table increment error
Browse files Browse the repository at this point in the history
  • Loading branch information
eduwardpost committed Oct 29, 2023
1 parent 513a755 commit 5125c51
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion uActivityPub/Data/uActivitySettings.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ namespace uActivityPub.Data;

// ReSharper disable once InconsistentNaming
[TableName(uActivitySettingKeys.TableName)]
[PrimaryKey("Id", AutoIncrement = false)]
[PrimaryKey("Id", AutoIncrement = true)]
[ExplicitColumns]
public class uActivitySettings
{
Expand Down
4 changes: 2 additions & 2 deletions uActivityPub/uActivityPub.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@
<PackageReadmeFile>README.md</PackageReadmeFile>
<Product>uActivityPub</Product>
<PackageId>uActivityPub</PackageId>
<Version>1.0.5</Version>
<AssemblyVersion>1.0.5</AssemblyVersion>
<Version>1.0.6</Version>
<AssemblyVersion>1.0.6</AssemblyVersion>
</PropertyGroup>

<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
Expand Down

0 comments on commit 5125c51

Please sign in to comment.