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
Xcode version: Version 16.0 (16A242d)
Sqlite.swift version: 0.14.0
my code is: let id = Expression<Int64>(value: "id"); ... try? db.run(tbl.create { t in t.column(id, primaryKey: .autoincrement) ... })
the Xcode give me a notification:Instance method 'column(_:primaryKey:check:)' requires the types 'String' and 'Int64' be equivalent
in the line: t.column(id, primaryKey: .autoincrement)
The text was updated successfully, but these errors were encountered:
Xcode version: Version 16.0 (16A242d)
Sqlite.swift version: 0.14.0
my code is:
let id = Expression<Int64>(value: "id"); ... try? db.run(tbl.create { t in t.column(id, primaryKey: .autoincrement) ... })
the Xcode give me a notification:
Instance method 'column(_:primaryKey:check:)' requires the types 'String' and 'Int64' be equivalent
in the line:
t.column(id, primaryKey: .autoincrement)
The text was updated successfully, but these errors were encountered: