Revert "Merge branch 'use-trunc-rounding' into rounding-fixes"
[gpstools.git] / postgres / create_table.sql
blobfd3fb599e0dc50a1088782773a2fbe5ef2db7532
1 -- create_table.sql
2 -- File ID: 21f7f30e-fafb-11dd-8266-000475e441b9
4 CREATE TABLE logg (
5     date timestamp,
6     coor point,
7     ele numeric(6, 1),
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 timestamp,
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 timestamp,
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 timestamp,
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 timestamp,
61     coor point,
62     descr text,
63     begindate timestamp, -- Pretty exact time when starting
64     enddate timestamp, -- Pretty exact time when ending
65     cabegin interval,
66     caend interval,
67     flags text[],
68     persons text[],
69     data bytea
72 CREATE TABLE pictures (
73     version smallint,
74     date timestamp,
75     coor point,
76     descr text,
77     filename text,
78     author text
81 CREATE TABLE film (
82     version smallint,
83     date timestamp,
84     coor point,
85     descr text,
86     filename text,
87     author text
90 CREATE TABLE lyd (
91     version smallint,
92     date timestamp,
93     coor point,
94     descr text,
95     filename text,
96     author text
99 CREATE TABLE stat (
100     lastupdate timestamp,
101     lastname timestamp