Skip to content

Commit fa8b00d

Browse files
committed
wip
1 parent 922e5b3 commit fa8b00d

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

Sources/StructuredQueriesCore/PrimaryKeyed.swift

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff 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 }

0 commit comments

Comments
 (0)