1
0
mirror of https://github.com/agdsn/ancient-weatherstation.git synced 2026-06-19 14:58:00 +00:00
git-svn-id: file:///home/jan/tmp/wetterstation/trunk@65 dd492736-c11a-0410-ad51-8c26713eaf7f
This commit is contained in:
losinshi
2006-09-01 14:45:00 +00:00
parent 27f0adec90
commit 20adf3dc12
4 changed files with 17 additions and 4 deletions
+1 -1
View File
@@ -1,3 +1,3 @@
#!/bin/bash
pg_dump -f structure.dump -F p -s -h 141.30.228.39 -U losinshi wetter
pg_dump -f structure.dump.sql -C -F p -s -h 141.30.228.39 -U losinshi wetter
pg_dump -f test_data.dump -F p -Z 9 -a -h 141.30.228.39 -U losinshi wetter
+15 -2
View File
@@ -7,6 +7,19 @@ SET check_function_bodies = false;
SET SESSION AUTHORIZATION 'postgres';
--
-- TOC entry 2 (OID 0)
-- Name: wetter; Type: DATABASE; Schema: -; Owner: postgres
--
CREATE DATABASE wetter WITH TEMPLATE = template0 ENCODING = 'SQL_ASCII';
\connect wetter postgres
SET client_encoding = 'SQL_ASCII';
SET check_function_bodies = false;
--
-- TOC entry 4 (OID 2200)
-- Name: public; Type: ACL; Schema: -; Owner: postgres
@@ -27,8 +40,8 @@ SET search_path = public, pg_catalog;
CREATE TABLE typen (
typ integer NOT NULL,
tabelle character varying(100),
bezeichnung character varying(255)
bezeichnung character varying(255),
tabelle character varying(100)
);
Binary file not shown.