create_views.sql: wp: Don't truncate waypoint names
[gpstools.git] / postgres / create_table.sql
blob8321379a9e9674400e4693d3452ba61441b40bc6
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     id integer
27 CREATE TABLE wayp_new (
28     coor point,
29     name text,
30     ele numeric(6, 1),
31     type text,
32     time timestamp,
33     cmt text, -- GPS waypoint comment. Sent to the GPS as comment.
34     descr text, -- A text description. Additional info intended for the user, not the GPS.
35     src text,
36     sym text,
37     id serial
40 CREATE TABLE wayp_rej (
41     coor point,
42     name text,
43     ele numeric(6, 1),
44     type text,
45     time timestamp,
46     cmt text, -- GPS waypoint comment. Sent to the GPS as comment.
47     descr text, -- A text description. Additional info intended for the user, not the GPS.
48     src text,
49     sym text,
50     id integer
53 CREATE TABLE tmpwayp AS
54     SELECT * FROM wayp LIMIT 0;
56 CREATE TABLE events (
57     date timestamp,
58     coor point,
59     descr text,
60     begindate timestamp, -- Pretty exact time when starting
61     enddate timestamp, -- Pretty exact time when ending
62     cabegin interval,
63     caend interval,
64     flags text[],
65     persons text[],
66     data bytea
69 CREATE TABLE pictures (
70     version smallint,
71     date timestamp,
72     coor point,
73     descr text,
74     filename text,
75     author text
78 CREATE TABLE film (
79     version smallint,
80     date timestamp,
81     coor point,
82     descr text,
83     filename text,
84     author text
87 CREATE TABLE lyd (
88     version smallint,
89     date timestamp,
90     coor point,
91     descr text,
92     filename text,
93     author text
96 CREATE TABLE stat (
97     lastupdate timestamp,
98     lastname timestamp