add gps position for files (#36240)

Co-authored-by: Laurent Destailleur <eldy@destailleur.fr>
This commit is contained in:
Eric - CAP-REL
2025-11-13 16:26:18 +01:00
committed by GitHub
parent 008443305a
commit 189f9fc0be
2 changed files with 11 additions and 1 deletions

View File

@@ -43,5 +43,9 @@ CREATE TABLE llx_ecm_files
fk_user_m integer,
note_private text,
note_public text,
acl text -- for future permission 'per file'
acl text, -- for future permission 'per file'
geolat double(24,8) DEFAULT NULL,
geolong double(24,8) DEFAULT NULL,
geopoint point DEFAULT NULL,
georesultcode varchar(16)
) ENGINE=innodb;