Files
thetool/db/template/migrate.up_down.template

30 lines
521 B
Plaintext

<?php
declare(strict_types=1);
$namespaceDefinition
use $useClassName;
final class $className extends $baseClassName
{
public function up(): void
{
if($this->getEnvironment() == "thetool") {
}
if($this->getEnvironment() == "addressdb") {
}
}
public function down(): void
{
if($this->getEnvironment() == "thetool") {
}
if($this->getEnvironment() == "addressdb") {
}
}
}