fix(unified): key_path column default (#114859)

fix: key_path column default
This commit is contained in:
Rafael Bortolon Paulovic
2025-12-04 12:40:21 -05:00
committed by GitHub
parent 665daa5a5d
commit ff97bfc772
@@ -186,7 +186,7 @@ func initResourceTables(mg *migrator.Migrator) string {
}))
mg.AddMigration("Add key_path column to resource_history", migrator.NewAddColumnMigration(resource_history_table, &migrator.Column{
Name: "key_path", Type: migrator.DB_NVarchar, Length: 2048, Nullable: false, Default: "", IsLatin: true,
Name: "key_path", Type: migrator.DB_NVarchar, Length: 2048, Nullable: false, Default: "''", IsLatin: true,
}))
resource_events_table := migrator.Table{