summary refs log tree commit diff
path: root/src/CacheStructs.h
diff options
context:
space:
mode:
authorDeepBlueV7.X <nicolas.werner@hotmail.de>2020-05-03 01:56:06 +0200
committerGitHub <noreply@github.com>2020-05-03 01:56:06 +0200
commitccd55c70df1ad57c848e06944d8eef49dc85cdec (patch)
treea9bfae6a1cd69ddde2c076e04b181c2adc1062fd /src/CacheStructs.h
parentMerge pull request #184 from shocklateboy92/features/backlog-progress (diff)
parentAdd delete pending_receipts migration (diff)
downloadnheko-ccd55c70df1ad57c848e06944d8eef49dc85cdec.tar.xz
Merge pull request #189 from Nheko-Reborn/db-migrations
Db migrations
Diffstat (limited to 'src/CacheStructs.h')
-rw-r--r--src/CacheStructs.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/CacheStructs.h b/src/CacheStructs.h

index ab7bbc71..ef08cfcb 100644 --- a/src/CacheStructs.h +++ b/src/CacheStructs.h
@@ -8,6 +8,15 @@ #include <mtx/events/join_rules.hpp> +namespace cache { +enum class CacheVersion : int +{ + Older = -1, + Current = 0, + Newer = 1, +}; +} + struct RoomMember { QString user_id;