DROP VIEW "public"."v_product_store";--> statement-breakpoint CREATE VIEW "public"."v_product_store" AS ( select p.id as product_id, p.title, p.description, p.price, p.stock, p.url_img, p.address, p.user_id, u.fullname, u.email, u.phone from products p left join auth.users as u on u.id = p.user_id);