File tree Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -378,6 +378,10 @@ func (c *cmdMigrate) Run(app *cobra.Command, args []string) error {
378
378
// Remove volatile.uuid key from storage volumes (not used by Incus).
379
379
rewriteStatements = append (rewriteStatements , "DELETE FROM storage_volumes_config WHERE key='volatile.uuid';" )
380
380
rewriteStatements = append (rewriteStatements , "DELETE FROM storage_volumes_snapshots_config WHERE key='volatile.uuid';" )
381
+
382
+ // Remove volatile.uuid key from instances (not used by Incus).
383
+ rewriteStatements = append (rewriteStatements , "DELETE FROM instances_config WHERE key='volatile.uuid';" )
384
+ rewriteStatements = append (rewriteStatements , "DELETE FROM instances_snapshots_config WHERE key='volatile.uuid';" )
381
385
}
382
386
383
387
// Mangle database schema to be compatible.
You can’t perform that action at this time.
0 commit comments