aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Server.Implementations/Security
diff options
context:
space:
mode:
authorLuke <luke.pulverenti@gmail.com>2016-06-12 19:35:22 -0400
committerGitHub <noreply@github.com>2016-06-12 19:35:22 -0400
commitf838ae0a465c5a788637ff30062a706fd26a0876 (patch)
tree1a2cc7c2a18795dbec0bd1951ec1ec6d223a5289 /MediaBrowser.Server.Implementations/Security
parent1ffd09b23d890bd84d682ce294ac14c318e687c0 (diff)
parent383110f9af6b5ad79ddabb3c8db0bdb7d4b4db03 (diff)
Merge pull request #1838 from MediaBrowser/dev
Dev
Diffstat (limited to 'MediaBrowser.Server.Implementations/Security')
-rw-r--r--MediaBrowser.Server.Implementations/Security/AuthenticationRepository.cs7
1 files changed, 1 insertions, 6 deletions
diff --git a/MediaBrowser.Server.Implementations/Security/AuthenticationRepository.cs b/MediaBrowser.Server.Implementations/Security/AuthenticationRepository.cs
index 3013510de1..74a552dccc 100644
--- a/MediaBrowser.Server.Implementations/Security/AuthenticationRepository.cs
+++ b/MediaBrowser.Server.Implementations/Security/AuthenticationRepository.cs
@@ -32,12 +32,7 @@ namespace MediaBrowser.Server.Implementations.Security
string[] queries = {
"create table if not exists AccessTokens (Id GUID PRIMARY KEY, AccessToken TEXT NOT NULL, DeviceId TEXT, AppName TEXT, AppVersion TEXT, DeviceName TEXT, UserId TEXT, IsActive BIT, DateCreated DATETIME NOT NULL, DateRevoked DATETIME)",
- "create index if not exists idx_AccessTokens on AccessTokens(Id)",
-
- //pragmas
- "pragma temp_store = memory",
-
- "pragma shrink_memory"
+ "create index if not exists idx_AccessTokens on AccessTokens(Id)"
};
connection.RunQueries(queries, Logger);