We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bfc47df commit d492c63Copy full SHA for d492c63
1 file changed
Sources/LocalAuthentication/Schema/InitializeSchema.swift
@@ -58,6 +58,11 @@ public func initializeSchema(_ fname: String = "./config/ApplicationConfiguratio
58
let a = Account()
59
try? a.setup()
60
61
+ // Account migrations:
62
+ // 1.3.1->1.4
63
+ let _ = try? a.sql("ALTER TABLE account ADD COLUMN \"source\" text;", params: [])
64
+ let _ = try? a.sql("ALTER TABLE account ADD COLUMN \"remoteid\" text;", params: [])
65
+
66
// Application
67
let app = Application()
68
try? app.setup()
0 commit comments