CloudMigrations: Store parent folder name in cloud_migration_resource table (#94009)
* use name in fe * store parent folder name in local db * clean up * tiny test * trial react * rename to parent name * go lint * generate api and ts * go tests * rearrange * clean * update with suggestions from josh * make library elements work * updates from comments * global migration types * parent name for alter table
This commit is contained in:
@@ -164,4 +164,10 @@ func addCloudMigrationsMigrations(mg *Migrator) {
|
||||
Type: DB_Text,
|
||||
Nullable: true,
|
||||
}))
|
||||
|
||||
mg.AddMigration("add cloud_migration_resource.parent_name column", NewAddColumnMigration(migrationResourceTable, &Column{
|
||||
Name: "parent_name",
|
||||
Type: DB_Text,
|
||||
Nullable: true,
|
||||
}))
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user