1
0
Fork 0
mirror of https://github.com/wallabag/wallabag.git synced 2025-08-26 18:21:02 +00:00

Update a migration to not use table prefix getter

This commit is contained in:
Yassine Guedidi 2025-01-18 14:51:14 +01:00
parent 1d1c721d01
commit bcf0f2f52c
2 changed files with 3 additions and 8 deletions

View file

@ -41,11 +41,6 @@ abstract class WallabagMigration extends AbstractMigration implements ContainerA
return false;
}
protected function getTablePrefix(): string
{
return (string) $this->container->getParameter('database_table_prefix');
}
protected function getTable($tableName, $unEscaped = false)
{
$table = $this->container->getParameter('database_table_prefix') . $tableName;