You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
COMMENT ON COLUMN templates.deprecated IS 'If set to a non empty string, the template will no longer be able to be used. The message will be displayed to the user.';
10
+
11
+
-- Restore the old version of the template_with_users view.
12
+
CREATE VIEW
13
+
template_with_users
14
+
AS
15
+
SELECT
16
+
templates.*,
17
+
coalesce(visible_users.avatar_url, '') AS created_by_avatar_url,
18
+
coalesce(visible_users.username, '') AS created_by_username
19
+
FROM
20
+
templates
21
+
LEFT JOIN
22
+
visible_users
23
+
ON
24
+
templates.created_by=visible_users.id;
25
+
26
+
COMMENT ON VIEW template_with_users IS 'Joins in the username + avatar url of the created by user.';
0 commit comments