Helper\Dialect\PostgresqlDialect::getDropView PHP Метод

getDropView() защищенный Метод

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"']];
    }