DB: Move a forgotten 'UPDATE channels' statement

This commit is contained in:
Samantaz Fox
2022-01-06 22:01:09 +01:00
parent 2ae074a9a4
commit 5ad2fc64b4
2 changed files with 11 additions and 1 deletions

View File

@@ -42,6 +42,16 @@ module Invidious::Database::Channels
PG_DB.exec(request, Time.utc, author, id)
end
def update_subscription_time(id : String)
request = <<-SQL
UPDATE channels
SET subscribed = $1
WHERE id = $2
SQL
PG_DB.exec(request, Time.utc, id)
end
def update_mark_deleted(id : String)
request = <<-SQL
UPDATE channels