'; } // List a Migration sub classes to execute $migrations = [ new From_0_8_to_0_9_Migration() ]; // --------------------------------------- // Check if MIGRATION_TABLE already exists $tables = $connect->allTables(); $pdo = $connect->getPDO(); if (!in_array(MIGRATION_TABLE, $tables)) { $pdo->exec(' CREATE TABLE IF NOT EXISTS `' . MIGRATION_TABLE . '` ( `id` INT(11) UNSIGNED NOT NULL AUTO_INCREMENT, `name` TEXT NOT NULL, `execute_date` TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (`id`) ) ENGINE = MyISAM DEFAULT CHARSET = utf8;'); output('Table ' . MIGRATION_TABLE . ' created.'); } $selectStmt = $pdo->prepare('SELECT id FROM ' . MIGRATION_TABLE . ' WHERE name=?'); $insertStmt = $pdo->prepare('INSERT INTO ' . MIGRATION_TABLE . ' (name) VALUES (?)'); $countSucceeded = 0; $countFailed = 0; $countSkipped = 0; // Loop on every Migration sub classes foreach ($migrations as $migration) { $className = get_class($migration); // Check if $className is a Migration sub class if (!$migration instanceof Migration) { output('The class ' . $className . ' is not a sub class of Framadate\\Migration\\Migration.'); exit; } // Check if the Migration is already executed $selectStmt->execute([$className]); $executed = $selectStmt->rowCount(); $selectStmt->closeCursor(); if (!$executed) { $migration->execute($pdo); if ($insertStmt->execute([$className])) { $countSucceeded++; output('Migration done: ' . $className); } else { $countFailed++; output('Migration failed: ' . $className); } } else { $countSkipped++; } } $countTotal = $countSucceeded + $countFailed + $countSkipped; output('Summary
'); output('Success: ' . $countSucceeded . ' / ' . $countTotal); output('Fail: ' . $countFailed . ' / ' . $countTotal); output('Skipped: ' . $countSkipped . ' / ' . $countTotal);