create the new db

This commit is contained in:
Andy2 2010-09-23 06:31:42 -07:00
parent eee41377f4
commit 74764a493b

View file

@ -30,6 +30,15 @@ nPerDevice INTEGER[],
ctime TIMESTAMP,
mtime TIMESTAMP
);
EOF
cat | psql xwgames --file - <<EOF
CREATE TABLE msgs (
id SERIAL,
connName VARCHAR(64),
hid INTEGER,
msg BYTEA
);
EOF
}