Migration 12 -> 13

This commit is contained in:
Alexandre Aubin 2019-11-08 23:17:32 +01:00
parent 515a8d2f65
commit 66c5ad18c9
3 changed files with 4 additions and 4 deletions

View file

@ -313,7 +313,7 @@
"migration_description_0010_migrate_to_apps_json": "Remove deprecated applists and use the new unified 'apps.json' list instead (outdated, replaced by migration 12)",
"migration_description_0011_setup_group_permission": "Set up user group and set up permission for apps and services",
"migration_description_0012_postgresql_password_to_md5_authentication": "Force PostgreSQL authentication to use MD5 for local connections",
"migration_description_0012_futureproof_appslist_system": "Migrate to the new future-proof appslist system",
"migration_description_0013_futureproof_appslist_system": "Migrate to the new future-proof appslist system",
"migration_0003_start": "Starting migration to Stretch. The logs will be available in {logfile}.",
"migration_0003_patching_sources_list": "Patching the sources.lists…",
"migration_0003_main_upgrade": "Starting main upgrade…",

View file

@ -6,8 +6,8 @@ logger = getActionLogger('yunohost.migration')
class MyMigration(Migration):
"Migrate from official.json to apps.json (outdated, replaced by migration 12)"
"Migrate from official.json to apps.json (outdated, replaced by migration 13)"
def run(self):
logger.info("This migration is oudated and doesn't do anything anymore. The migration 12 will handle this instead.")
pass
logger.info("This migration is oudated and doesn't do anything anymore. The migration 13 will handle this instead.")
pass