7 lines
157 B
SQL
7 lines
157 B
SQL
select name,
|
|
label,
|
|
created_at as "created_at: DateTime<Utc>",
|
|
is_archived as "is_archived: bool"
|
|
from roles
|
|
|
|
order by created_at desc
|