Térképi rétegkezelő lérehozása, track online mentésének előkészítése

This commit is contained in:
2026-06-12 13:41:36 +02:00
parent 644201dc8a
commit beb07fe007
10 changed files with 169 additions and 55 deletions
+4 -1
View File
@@ -87,7 +87,10 @@ class AppDatabase {
status TEXT NOT NULL DEFAULT 'recording',
source TEXT NOT NULL DEFAULT 'Telefon GPS',
distance_m REAL NOT NULL DEFAULT 0,
point_count INTEGER NOT NULL DEFAULT 0
point_count INTEGER NOT NULL DEFAULT 0,
is_local_only INTEGER NOT NULL DEFAULT 0,
sync_status TEXT NOT NULL DEFAULT 'pending',
supabase_id TEXT
)
''');
await db.execute('CREATE INDEX idx_tracks_project ON tracks(project_id)');