mirror of
https://github.com/NamelessMC/Nameless
synced 2026-08-18 06:29:04 -04:00
14 lines
312 B
PHP
14 lines
312 B
PHP
<?php
|
|
|
|
class PhinxAdapter {
|
|
|
|
public static function migrate(): string {
|
|
return (new Phinx\Wrapper\TextWrapper(
|
|
new Phinx\Console\PhinxApplication(),
|
|
[
|
|
'configuration' => __DIR__ . '/../../migrations/phinx.php',
|
|
]
|
|
))->getMigrate();
|
|
}
|
|
|
|
}
|