blob: 29d20015b314135ddf04403b4171340270d8e302 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#!/usr/bin/env php
<?php
require __DIR__ . '/../vendor/autoload.php';
foreach (glob(__DIR__ . '/../migrations/*.php') as $file) {
require $file;
}
\WpfTest\Db\Migrator::getInstance()->migrate();
|