We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 261f98a commit 673367bCopy full SHA for 673367b
Sources/SQLite/Schema/SchemaDefinitions.swift
@@ -93,7 +93,7 @@ public struct ColumnDefinition: Equatable {
93
// swiftlint:disable:next force_try
94
static let pattern = try! NSRegularExpression(pattern: "PRIMARY KEY\\s*(?:ASC|DESC)?\\s*(?:ON CONFLICT (\\w+)?)?\\s*(AUTOINCREMENT)?")
95
96
- init(autoIncrement: Bool = true, onConflict: OnConflict? = nil) {
+ public init(autoIncrement: Bool = true, onConflict: OnConflict? = nil) {
97
self.autoIncrement = autoIncrement
98
self.onConflict = onConflict
99
}
0 commit comments