File tree Expand file tree Collapse file tree 1 file changed +2
-4
lines changed
Sources/StructuredQueriesCore Expand file tree Collapse file tree 1 file changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -4,8 +4,7 @@ where TableColumns: PrimaryKeyedTableDefinition<PrimaryKey> {
44 /// A type representing this table's primary key.
55 ///
66 /// For auto-incrementing tables, this is typically `Int`.
7- associatedtype PrimaryKey : QueryBindable
8- where PrimaryKey. QueryValue == PrimaryKey , PrimaryKey. QueryValue. QueryOutput: Sendable
7+ associatedtype PrimaryKey : QueryBindable where PrimaryKey. QueryValue == PrimaryKey
98
109 /// A type that represents this type, but with an optional primary key.
1110 ///
@@ -49,8 +48,7 @@ where QueryValue: PrimaryKeyedTable {
4948 /// A type representing this table's primary key.
5049 ///
5150 /// For auto-incrementing tables, this is typically `Int`.
52- associatedtype PrimaryKey : QueryBindable
53- where PrimaryKey. QueryValue == PrimaryKey , PrimaryKey. QueryValue. QueryOutput: Sendable
51+ associatedtype PrimaryKey : QueryBindable where PrimaryKey. QueryValue == PrimaryKey
5452
5553 /// The column representing this table's primary key.
5654 var primaryKey : TableColumn < QueryValue , PrimaryKey > { get }
You can’t perform that action at this time.
0 commit comments