Skip to content

Commit 9a55836

Browse files
authored
Fix typo in table's name for postgresql. (#54)
1 parent b78888b commit 9a55836

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/AppAny.Quartz.EntityFrameworkCore.Migrations.PostgreSQL/EntityTypeConfigurations/QuartzSimplePropertyTriggerEntityTypeConfiguration.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ public QuartzSimplePropertyTriggerEntityTypeConfiguration(string? prefix, string
1717

1818
public void Configure(EntityTypeBuilder<QuartzSimplePropertyTrigger> builder)
1919
{
20-
builder.ToTable($"{prefix}SIMPROP_TRIGGERS", schema);
20+
builder.ToTable($"{prefix}simprop_triggers", schema);
2121

2222
builder.HasKey(x => new { x.SchedulerName, x.TriggerName, x.TriggerGroup });
2323

0 commit comments

Comments
 (0)