You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
CREATE TABLE IF NOT EXISTS external_extension_repos (
12
+
id INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL,
13
+
type TEXT NOT NULL,
14
+
baseUrl TEXT NOT NULL,
15
+
name TEXT NOT NULL,
16
+
shortName TEXT,
17
+
website TEXT NOT NULL,
18
+
signingKeyFingerprint TEXT NOT NULL,
19
+
createdAt INTEGER NOT NULL,
20
+
updatedAt INTEGER NOT NULL,
21
+
lastSuccessAt INTEGER NOT NULL,
22
+
lastError TEXT,
23
+
version TEXT
24
+
)
25
+
""".trimIndent()
26
+
)
27
+
db.execSQL("CREATE UNIQUE INDEX IF NOT EXISTS `index_external_extension_repos_type_baseUrl` ON `external_extension_repos` (`type`, `baseUrl`)")
28
+
db.execSQL("CREATE UNIQUE INDEX IF NOT EXISTS `index_external_extension_repos_type_signingKeyFingerprint` ON `external_extension_repos` (`type`, `signingKeyFingerprint`)")
0 commit comments