13 lines
344 B
SQL
13 lines
344 B
SQL
select id,
|
|
created_at as "created_at: DateTime<Utc>",
|
|
updated_at as "updated_at: DateTime<Utc>",
|
|
label,
|
|
redirect_uri,
|
|
secret,
|
|
is_confidential as "is_confidential: bool",
|
|
is_archived as "is_archived: bool"
|
|
from apps
|
|
|
|
where id is (?)
|
|
and redirect_uri is (?)
|
|
and is_archived is 0
|