diff options
Diffstat (limited to 'db/migrations_backup/0081_wealthy_roxanne_simpson.sql')
| -rw-r--r-- | db/migrations_backup/0081_wealthy_roxanne_simpson.sql | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/db/migrations_backup/0081_wealthy_roxanne_simpson.sql b/db/migrations_backup/0081_wealthy_roxanne_simpson.sql new file mode 100644 index 00000000..90e63a27 --- /dev/null +++ b/db/migrations_backup/0081_wealthy_roxanne_simpson.sql @@ -0,0 +1,4 @@ +DROP VIEW "public"."user_view";--> statement-breakpoint +CREATE VIEW "public"."user_view" AS (select "users"."id" as "user_id", "users"."name" as "user_name", "users"."email" as "user_email", "users"."domain" as "user_domain", "users"."image_url" as "user_image", "vendors"."id" as "company_id", "vendors"."vendor_name" as "company_name", + array_agg("roles"."name") + as "roles", "users"."created_at" as "created_at" from "users" left join "vendors" on "users"."company_id" = "vendors"."id" left join "user_roles" on "users"."id" = "user_roles"."user_id" left join "roles" on "user_roles"."role_id" = "roles"."id" group by "users"."id", "vendors"."id");
\ No newline at end of file |
