@@ -455,7 +454,7 @@ class SqlitePlatform extends AbstractPlatform
/**
* {@inheritDoc}
*/
publicfunctiongetListTablesSQL()
publicfunctiongetListTablesSQL():string
{
return"SELECT name FROM sqlite_master WHERE type = 'table' AND name != 'sqlite_sequence' AND name != 'geometry_columns' AND name != 'spatial_ref_sys' "
.'UNION ALL SELECT name FROM sqlite_temp_master '
...
...
@@ -465,7 +464,7 @@ class SqlitePlatform extends AbstractPlatform