♻️ Refactor field name

This commit is contained in:
Andrés Moya 2021-03-16 15:31:34 +01:00 committed by Andrey Antukh
parent b464181213
commit d9aa94025a
3 changed files with 8 additions and 4 deletions

View file

@ -96,7 +96,7 @@
(retrieve-all-projects conn profile-id)))
(def sql:all-projects
"select p1.*, t.name as team_name, t.is_default as default_team
"select p1.*, t.name as team_name, t.is_default as is_default_team
from project as p1
inner join team as t
on t.id = p1.team_id
@ -108,7 +108,7 @@
tpr.is_admin = true))
and p1.deleted_at is null
union
select p2.*, t.name as team_name, t.is_default as default_team
select p2.*, t.name as team_name, t.is_default as is_default_team
from project as p2
inner join team as t
on t.id = p2.team_id