001package de.deepamehta.plugins.accesscontrol.migrations;
002
003import de.deepamehta.core.service.Migration;
004
005
006
007/**
008 * Creates the "admin" user account.
009 * Runs only in CLEAN_INSTALL mode.
010 * <p>
011 * Note: when UPDATEing to 4.5 the "admin" user account already exists.
012 * It was created via postInstall() hook (which is obsolete in 4.5)
013 * <p>
014 * Part of DM 4.5
015 */
016public class Migration4 extends Migration {
017
018    @Override
019    public void run() {
020        // content moved to Migration10.java as the "Login enabled" config topic type (created
021        // in migration 9 as of DM 4.7) must exist already
022    }
023}