Skip to content

Commit

Permalink
#1: Improve model types.
Browse files Browse the repository at this point in the history
  • Loading branch information
jenetics committed Sep 12, 2019
1 parent 194da65 commit cbde990
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions jpx.jdbc/src/main/resources/model-psql.sql
Original file line number Diff line number Diff line change
Expand Up @@ -81,11 +81,11 @@ CREATE TABLE way_point(
id BIGSERIAL NOT NULL PRIMARY KEY,
lat NUMERIC(12, 9) NOT NULL,
lon NUMERIC(12, 9) NOT NULL,
ele NUMERIC(7, 1),
ele NUMERIC(8, 2),
speed NUMERIC(11, 2),
time TIMESTAMP WITH TIME ZONE,
magvar NUMERIC(8, 5),
geoidheight NUMERIC(7, 1),
geoidheight NUMERIC(8, 2),
name VARCHAR(255),
cmt VARCHAR(255),
dscr TEXT,
Expand Down

0 comments on commit cbde990

Please sign in to comment.