Skip to content

Commit 347a4dd

Browse files
authored
fixed postgresql error that relation "uc_version" already exists (#295)
1 parent 6f697bb commit 347a4dd

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Lingarr.Core/LingarrVersion.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ namespace Lingarr.Core;
55
public static class LingarrVersion
66
{
77
public const string Name = "Lingarr";
8-
public const string Number = "1.0.4";
8+
public const string Number = "1.0.5";
99

1010
public static async Task<VersionInfo> CheckForUpdates(object? lingarrApiService = null)
1111
{

Lingarr.Migrations/CustomVersionTableMetaData.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ public class CustomVersionTableMetaData : IVersionTableMetaData
1212
public string SchemaName => string.Empty;
1313
public string TableName => "version_info";
1414
public string ColumnName => "version";
15-
public string UniqueIndexName => "uc_version";
15+
public string UniqueIndexName => "ux_version";
1616
public string AppliedOnColumnName => "applied_on";
1717
public string DescriptionColumnName => "description";
1818
public bool CreateWithPrimaryKey => true;

0 commit comments

Comments
 (0)