This commit is contained in:
Joseph Ferano 2022-06-18 21:15:43 +07:00
parent f206fbf217
commit 3814cd0cc4

View File

@ -86,7 +86,7 @@ let private updateInviteCount code count =
|> Sql.connect
|> Sql.parameters [ "count" , Sql.int count ; "code" , Sql.string code ]
|> Sql.query """
"UPDATE invite SET count = @count WHERE code = @code"
UPDATE invite SET count = @count WHERE code = @code
"""
|> Sql.executeNonQueryAsync
|> Async.AwaitTask