mirror of
https://github.com/khibino/haskell-relational-record.git
synced 2024-12-16 07:52:05 +03:00
23 lines
297 B
Bash
Executable File
23 lines
297 B
Bash
Executable File
#! /bin/sh
|
|
|
|
PATH='/usr/bin:/bin'
|
|
|
|
create0='
|
|
CREATE TABLE TEST.test_table0 (
|
|
foo smallint NOT NULL,
|
|
foo_bar integer NOT NULL,
|
|
par_ent integer NOT NULL,
|
|
bar date,
|
|
bar_baz text,
|
|
baz VARCHAR(10),
|
|
|
|
PRIMARY KEY(foo_bar)
|
|
)
|
|
'
|
|
|
|
set -x
|
|
|
|
psql -c "CREATE SCHEMA TEST" testdb
|
|
psql -c "$create0" testdb
|
|
|