* @since 13.0.0 */ public function getTables(): array; /** * Gets all table names, prefixed with table prefix * * @return list * @since 13.0.0 */ public function getTableNames(): array; /** * Gets all table names * * @return list * @since 13.0.0 */ public function getTableNamesWithoutPrefix(): array; /** * Gets the DatabasePlatform for the database. * * @return AbstractPlatform * * @throws Exception * @since 23.0.0 */ public function getDatabasePlatform(): AbstractPlatform; /** * Drop autoincrement from an existing table of the database. * * @since 33.0.0 */ public function dropAutoincrementColumn(string $table, string $column): void; }