1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-24 10:31:57 +02:00

[feature/migrations] Standard vars for migrations and run sql with feedback

PHPBB3-9737
This commit is contained in:
Nils Adermann
2012-10-25 13:02:56 -07:00
committed by Nathan Guse
parent 8645321f40
commit c802f2a66c
3 changed files with 63 additions and 8 deletions

View File

@@ -32,7 +32,7 @@ class phpbb_dbal_migrator_test extends phpbb_database_test_case
$this->db = $this->new_dbal();
$this->db_tools = new phpbb_db_tools($this->db);
$this->migrator = new phpbb_db_migrator($this->db, $this->db_tools, MIGRATIONS_TABLE);
$this->migrator = new phpbb_db_migrator($this->db, $this->db_tools, 'phpbb_', MIGRATIONS_TABLE, 'phpBB/', '.php');
}
public function tearDown()