Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 1 addition & 4 deletions datasets/postgres/init-postgres-salesdb.sql
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,7 @@
-- DROP AND CREATE DATABASE
DROP DATABASE IF EXISTS salesdb;
CREATE DATABASE salesdb;

-- Connect to the new database (manual step in most PostgreSQL tools)

-- Now switch to the salesdb database to execute the following
\connect salesdb;

-- Create schema
DROP SCHEMA IF EXISTS sales CASCADE;
Expand Down