LazyRecord\SqlBuilder\SqliteBuilder::dropTable PHP Method

dropTable() public method

public dropTable ( LazyRecord\Schema\SchemaInterface $schema )
$schema LazyRecord\Schema\SchemaInterface
    public function dropTable(SchemaInterface $schema)
    {
        return 'DROP TABLE IF EXISTS ' . $this->driver->quoteIdentifier($schema->getTable()) . ';';
    }