Add northwind db. Test fix.
This commit is contained in:
parent
0a417a14d6
commit
f016bb563c
1 changed files with 5 additions and 1 deletions
|
|
@ -1,7 +1,6 @@
|
||||||
--
|
--
|
||||||
-- PostgreSQL database dump
|
-- PostgreSQL database dump
|
||||||
--
|
--
|
||||||
SET search_path = northwind;
|
|
||||||
|
|
||||||
SET statement_timeout = 0;
|
SET statement_timeout = 0;
|
||||||
SET lock_timeout = 0;
|
SET lock_timeout = 0;
|
||||||
|
|
@ -16,6 +15,11 @@ SET default_tablespace = '';
|
||||||
|
|
||||||
SET default_with_oids = false;
|
SET default_with_oids = false;
|
||||||
|
|
||||||
|
DROP SCHEMA IF EXISTS northwind CASCADE;
|
||||||
|
|
||||||
|
CREATE SCHEMA northwind;
|
||||||
|
|
||||||
|
SET search_path = northwind;
|
||||||
|
|
||||||
---
|
---
|
||||||
--- drop tables
|
--- drop tables
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue