Browse Source

paths of migration changed

feature/refractoring
Paul Rock 7 years ago committed by Chocobozzz
parent
commit
0c0cba75f8
  1. 62
      scripts/migration.php

62
scripts/migration.php

@ -1,55 +1,51 @@
<?php <?php
if (count($argv) !== 2) { if (count($argv) !== 2) {
echo "Need the www base path as argument"; echo "Need the www base path as argument";
exit(0); exit(0);
} }
$www = $argv[1]; $www = $argv[1];
require("$www/include/config.php"); require("$www/app/config.php");
require("$www/include/connect.php"); require("$www/app/connect.php");
require("$www/include/functions.php"); require("$www/app/functions.php");
$migrations = getMigrationSchemas(); $migrations = getMigrationSchemas();
try { try {
$req = $bdd->prepare('SELECT `sql_schema` FROM `application` LIMIT 1'); $req = $bdd->prepare('SELECT `sql_schema` FROM `application` LIMIT 1');
$req->execute(); $req->execute();
$data = $req->fetch(); $data = $req->fetch();
$sql_schema = -1; $sql_schema = -1;
if ($data['sql_schema']) { if ($data['sql_schema']) {
$sql_schema = $data['sql_schema']; $sql_schema = $data['sql_schema'];
} }
} } // Table does not exist
// Table does not exist catch (Exception $e) {
catch (Exception $e) {
$sql_schema = -1; $sql_schema = -1;
} }
// For each migrations // For each migrations
foreach ($migrations as $migration_value) { foreach ($migrations as $migration_value) {
// Do the migration, we are behind the last schema // Do the migration, we are behind the last schema
if ($sql_schema < $migration_value) { if ($sql_schema < $migration_value) {
// Create the tables or die // Create the tables or die
$sql_file = dirname(__FILE__) . "/sql/schema-$migration_value.sql"; $sql_file = dirname(__FILE__) . "/sql/schema-$migration_value.sql";
try { try {
$sql = file_get_contents($sql_file); $sql = file_get_contents($sql_file);
$bdd->exec($sql); $bdd->exec($sql);
} } catch (PDOException $e) {
catch (PDOException $e) { printError($e->getMessage());
printError($e->getMessage()); exit(1);
exit(1); }
}
// Update schema to the new value
// Update schema to the new value updateSchema($bdd, $migration_value);
updateSchema($bdd, $migration_value);
echo "Moved to schema $migration_value\n";
}
}
?> echo "Moved to schema $migration_value\n";
}
}

Loading…
Cancel
Save