From 9420b9cc146e818bfb33274190e0f03ad048d783 Mon Sep 17 00:00:00 2001 From: othercorey Date: Fri, 17 Sep 2021 11:57:33 -0500 Subject: [PATCH] Update Migrator from static to instance --- tests/bootstrap.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/bootstrap.php b/tests/bootstrap.php index 5365153f46..25c891be93 100644 --- a/tests/bootstrap.php +++ b/tests/bootstrap.php @@ -63,4 +63,4 @@ // hook into your migration tool of choice here or // load schema from a SQL dump file with // \Cake\TestSuite\Schema\SchemaManager::create('tests', './tests/schema.sql'); -Migrator::migrate(); +(new Migrator())->run();