fix(unified): key_path column default (#114859)
fix: key_path column default
This commit is contained in:
@@ -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{
|
||||
|
||||
Reference in New Issue
Block a user