data model: migration

This commit is contained in:
Kiara Grouwstra 2025-06-23 19:22:47 +02:00
parent 9230ea540c
commit e3e2a3359c
Signed by: kiara
SSH key fingerprint: SHA256:COspvLoLJ5WC5rFb9ZDe5urVCkK4LJZOsjfF4duRJFU
2 changed files with 8 additions and 0 deletions

View file

@ -52,6 +52,10 @@ in
}; };
}; };
}; };
migrations.boo = {
deployment = config.deployments.baz;
runtime-environment = config.runtime-environments.bar;
};
} }
); );
in in

View file

@ -89,5 +89,9 @@ in
description = "Deployment of a configuration of applications to a run-time environment"; description = "Deployment of a configuration of applications to a run-time environment";
type = attrsOf deployment; type = attrsOf deployment;
}; };
migrations = mkOption {
description = "Migrations from Fediversity deployments to Fediversity run-time environments";
type = attrsOf migration;
};
}; };
} }