removed dynamic database prefix (#641)

This commit is contained in:
Kevin Papst
2019-03-13 15:17:18 +01:00
committed by GitHub
parent 19bfff9899
commit fb6bf4319f
10 changed files with 61 additions and 57 deletions

View File

@@ -48,7 +48,7 @@ abstract class AbstractMigration extends BaseAbstractMigration implements Contai
*/
protected function getTableName($name)
{
return getenv('DATABASE_PREFIX') . $name;
return TablePrefixSubscriber::PREFIX . $name;
}
/**