1
0
mirror of https://github.com/bpatrik/pigallery2.git synced 2025-12-07 23:23:49 +02:00

adding GPX support

This commit is contained in:
Patrik J. Braun
2018-11-26 00:26:29 +01:00
parent f1619ad984
commit 1a37b832be
28 changed files with 3610 additions and 43 deletions

View File

@@ -14,6 +14,7 @@ import {Logger} from '../../Logger';
import {MediaEntity} from './enitites/MediaEntity';
import {VideoEntity} from './enitites/VideoEntity';
import {DataStructureVersion} from '../../../common/DataStructureVersion';
import {FileEntity} from './enitites/FileEntity';
export class SQLConnection {
@@ -32,6 +33,7 @@ export class SQLConnection {
options.name = 'main';
options.entities = [
UserEntity,
FileEntity,
MediaEntity,
PhotoEntity,
VideoEntity,
@@ -57,6 +59,7 @@ export class SQLConnection {
options.name = 'test';
options.entities = [
UserEntity,
FileEntity,
MediaEntity,
PhotoEntity,
VideoEntity,