Migrator is now able to create real tables.

Because of how WordPress and the dbDelta function works, it's
basically impossile to test it with Unit testing.
We'll have to make sure we properly test this in acceptance testing.
This commit is contained in:
marco
2015-07-30 20:00:58 +02:00
parent 006a1015f0
commit ba436ccc42
3 changed files with 21 additions and 3 deletions

View File

@ -233,6 +233,8 @@ class Initializer {
}
public function install() {
$migrator = new \MailPoet\Config\Migrator;
$migrator->up();
$this->log_version_number();
}