File tree Expand file tree Collapse file tree 4 files changed +9
-3
lines changed Expand file tree Collapse file tree 4 files changed +9
-3
lines changed Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ ALTER TABLE user_profiles
26
26
-- --------------------------------------------------------------------------------------------------
27
27
28
28
CREATE TABLE user_tracks (
29
- track_id integer NOT NULL ,
29
+ track_id bigint NOT NULL ,
30
30
user_name varchar (40 ) NOT NULL ,
31
31
file_ref varchar (255 ),
32
32
upload_state smallint DEFAULT 0
Original file line number Diff line number Diff line change
1
+ -- --------------------------------------------------------------------------------------------------
2
+ -- user_tracks
3
+ -- --------------------------------------------------------------------------------------------------
4
+
5
+ ALTER TABLE user_tracks
6
+ ALTER COLUMN track_id TYPE bigint using track_id::bigint ;
Original file line number Diff line number Diff line change @@ -49,4 +49,4 @@ def __init__(self):
49
49
50
50
@cherrypy .expose
51
51
def index (self ):
52
- return 'OpenSeaMap API v1.0 '
52
+ return 'OpenSeaMap API v1.1 '
Original file line number Diff line number Diff line change 1
1
APPNAME = 'openseamap-api'
2
- VERSION = '1.0 '
2
+ VERSION = '1.1 '
3
3
4
4
5
5
top = '.'
You can’t perform that action at this time.
0 commit comments