Skip to content

Commit e29eccc

Browse files
committed
wip
1 parent 95c2598 commit e29eccc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Sources/StructuredQueriesCore/Triggers.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -296,7 +296,7 @@ public struct TemporaryTrigger<On: Table>: Statement {
296296
///
297297
/// - Parameter ifExists: Adds an `IF EXISTS` condition to the `DROP TRIGGER`.
298298
/// - Returns: A `DROP TRIGGER` statement for this trigger.
299-
public func drop(ifExists: Bool = false) -> some Statement {
299+
public func drop(ifExists: Bool = false) -> some Statement<()> {
300300
var query: QueryFragment = "DROP TRIGGER"
301301
if ifExists {
302302
query.append(" IF EXISTS")

0 commit comments

Comments
 (0)