gpsfold: Remove $Id$ at EOF.
[gpstools.git] / branches / gpst.gpsman-format / postgres / create_table.sql
blob7d3c930ac1fbe24bf8b0cee68142f31c8c979a7d
1 -- $Id$
3 CREATE TABLE logg (
4     date timestamptz,
5     coor point,
6     ele numeric,
7     sted text,
8     dist numeric(8, 5),
9     description text,
10     avst numeric(8, 5)
13 CREATE TABLE wayp (
14     coor point,
15     name text,
16     ele numeric(6, 1),
17     type text,
18     time timestamptz,
19     cmt text, -- GPS waypoint comment. Sent to the GPS as comment.
20     descr text, -- A text description. Additional info intended for the user, not the GPS.
21     src text,
22     sym text
25 CREATE TABLE tmpwayp AS
26     SELECT * from wayp LIMIT 0;
28 CREATE TABLE events (
29     date timestamptz,
30     coor point,
31     descr text,
32     begindate timestamptz, -- Ganske eksakt tidspunt ved start
33     enddate timestamptz, -- Ganske eksakt tidspunkt ved slutt
34     cabegin interval,
35     caend interval,
36     flags text[],
37     persons text[],
38     data bytea
41 CREATE TABLE pictures (
42     date timestamptz,
43     coor point,
44     descr text,
45     filename text,
46     author text
49 CREATE TABLE stat (
50     lastupdate timestamptz,
51     laststed timestamptz