mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2024-12-30 10:26:58 +01:00
create the new db
This commit is contained in:
parent
eee41377f4
commit
74764a493b
1 changed files with 9 additions and 0 deletions
|
@ -30,6 +30,15 @@ nPerDevice INTEGER[],
|
||||||
ctime TIMESTAMP,
|
ctime TIMESTAMP,
|
||||||
mtime TIMESTAMP
|
mtime TIMESTAMP
|
||||||
);
|
);
|
||||||
|
EOF
|
||||||
|
|
||||||
|
cat | psql xwgames --file - <<EOF
|
||||||
|
CREATE TABLE msgs (
|
||||||
|
id SERIAL,
|
||||||
|
connName VARCHAR(64),
|
||||||
|
hid INTEGER,
|
||||||
|
msg BYTEA
|
||||||
|
);
|
||||||
EOF
|
EOF
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue