mirror of
https://github.com/khibino/haskell-relational-record.git
synced 2024-12-16 07:52:05 +03:00
11 lines
219 B
Bash
11 lines
219 B
Bash
|
#! /bin/sh
|
||
|
|
||
|
PATH='/usr/bin:/bin'
|
||
|
|
||
|
set -x
|
||
|
|
||
|
psql -c "DROP TABLE SAMPLE1.membership" testdb
|
||
|
psql -c "DROP TABLE SAMPLE1.group" testdb
|
||
|
psql -c "DROP TABLE SAMPLE1.user" testdb
|
||
|
psql -c "DROP SCHEMA IF EXISTS SAMPLE1" testdb
|