Skip to content

Commit 1def8a9

Browse files
committed
Add the missing field in the migration script
1 parent 3a0b135 commit 1def8a9

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

Mystique.Core.Repository.MySql/Migrations/202005282045.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ public override void Up()
1212
.WithColumn("PluginId").AsGuid().PrimaryKey()
1313
.WithColumn("UniqueKey").AsString().NotNullable()
1414
.WithColumn("Name").AsString().NotNullable()
15+
.WithColumn("DisplayName").AsString().NotNullable()
1516
.WithColumn("Version").AsString().NotNullable()
1617
.WithColumn("Enable").AsInt16().NotNullable();
1718

0 commit comments

Comments
 (0)