Helper\Dialect\PostgresqlDialect::getDropView PHP Method

getDropView() protected method

protected getDropView ( )
    protected function getDropView()
    {
        return [[null, false, 'DROP VIEW "test_view"'], [null, true, 'DROP VIEW IF EXISTS "test_view"'], ['schema', false, 'DROP VIEW "schema"."test_view"'], ['schema', true, 'DROP VIEW IF EXISTS "schema"."test_view"']];
    }