Skip to content

v0.5.1

Compare
Choose a tag to compare
@trasch trasch released this 25 Apr 14:24
· 29 commits to main since this release

Also forward the sql extension from PostgresKit.

try await pool.connection({ connection in
    try await connection.sql()
        .delete(from: "incoming")
        .where("logtime", .lessThan, Date(timeIntervalSinceNow: -seconds))
        .run()
})