Skip to content

Commit 90d3e8c

Browse files
committed
Fixed bug with schema for the errors table
1 parent d74de40 commit 90d3e8c

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/Cofoundry.Plugins.ErrorLogging.Admin/Cofoundry.Plugins.ErrorLogging.Admin.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
</PropertyGroup>
1616

1717
<ItemGroup>
18-
<PackageReference Include="Cofoundry.Web.Admin" Version="0.2.0-beta0073" />
18+
<PackageReference Include="Cofoundry.Web.Admin" Version="0.2.0-beta0084" />
1919
</ItemGroup>
2020

2121
<ItemGroup>

src/Cofoundry.Plugins.ErrorLogging/Cofoundry.Plugins.ErrorLogging.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
</PropertyGroup>
1616

1717
<ItemGroup>
18-
<PackageReference Include="Cofoundry.Web" Version="0.2.0-beta0073" />
18+
<PackageReference Include="Cofoundry.Web" Version="0.2.0-beta0084" />
1919
</ItemGroup>
2020

2121
<ItemGroup>

src/Cofoundry.Plugins.ErrorLogging/Data/ErrorMap.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ public class ErrorMap : IEntityTypeConfiguration<Error>
99
{
1010
public void Configure(EntityTypeBuilder<Error> builder)
1111
{
12-
builder.ToTable("Error", DbConstants.CofoundrySchema);
12+
builder.ToTable("Error", DbConstants.CofoundryPluginSchema);
1313

1414
// Properties
1515
builder.Property(t => t.ExceptionType)

0 commit comments

Comments
 (0)