gpsfold: Remove $Id$ at EOF.
[gpstools.git] / branches / gpst.gpxfix / postgres / create_table.sql
blob32442732221cf3b645e238e3fca34e73c7f92e69
1 -- $Id$
2 -- File ID: 21f7f30e-fafb-11dd-8266-000475e441b9
4 CREATE TABLE logg (
5     date timestamptz,
6     coor point,
7     ele numeric,
8     name text,
9     dist numeric(8, 5),
10     description text,
11     id serial
14 CREATE TABLE wayp (
15     coor point,
16     name text,
17     ele numeric(6, 1),
18     type text,
19     time timestamptz,
20     cmt text, -- GPS waypoint comment. Sent to the GPS as comment.
21     descr text, -- A text description. Additional info intended for the user, not the GPS.
22     src text,
23     sym text,
24     numpoints integer,
25     id integer
28 CREATE TABLE wayp_new (
29     coor point,
30     name text,
31     ele numeric(6, 1),
32     type text,
33     time timestamptz,
34     cmt text, -- GPS waypoint comment. Sent to the GPS as comment.
35     descr text, -- A text description. Additional info intended for the user, not the GPS.
36     src text,
37     sym text,
38     numpoints integer,
39     id serial
42 CREATE TABLE wayp_rej (
43     coor point,
44     name text,
45     ele numeric(6, 1),
46     type text,
47     time timestamptz,
48     cmt text, -- GPS waypoint comment. Sent to the GPS as comment.
49     descr text, -- A text description. Additional info intended for the user, not the GPS.
50     src text,
51     sym text,
52     numpoints integer,
53     id integer
56 CREATE TABLE tmpwayp AS
57     SELECT * FROM wayp LIMIT 0;
59 CREATE TABLE events (
60     date timestamptz,
61     coor point,
62     descr text,
63     begindate timestamptz, -- Ganske eksakt tidspunt ved start
64     enddate timestamptz, -- Ganske eksakt tidspunkt ved slutt
65     cabegin interval,
66     caend interval,
67     flags text[],
68     persons text[],
69     data bytea
72 CREATE TABLE pictures (
73     version smallint,
74     date timestamptz,
75     coor point,
76     descr text,
77     filename text,
78     author text
81 CREATE TABLE stat (
82     lastupdate timestamptz,
83     lastname timestamptz