Problem with merging a branch
Hi, my project is ready to be published. I've been working within the Supabase UI the whole time, and I have quite a lot of edge functions (about 20), so it was convenient for me to be able to deploy them via the Supabase UI. I have minimal experience with Docker, although I've started to learn more about it now, but I'd prefer to avoid it.
Before I publish my application, I would like to create a proven flow for managing changes in the database, because I expect to be making quite a lot of changes to it. This is where the newly launched branching 2.0 came in handy -> the flow would be to create a branch, make it a persistent branch, and it will be my development environment from where I will push all changes -> but when I create a new branch and want to merge it immediately, I get a log that shows me changes on 500 lines, and these changes are often of this type:
This worries me a little. Is this normal behavior? Is there just a problem in snytax, or? Thanks!
drop trigger if exists "trg_sync_avatar_option_upd" on "auth"."users";
drop policy "Allow authenticated users to upload documents" on "storage"."objects";
drop policy "Allow service role to read templates" on "storage"."objects";
drop policy "Allow users to read their documents" on "storage"."objects";
drop policy "Anyone can view files" on "storage"."objects";
drop policy "Upload of photo" on "storage"."objects";
drop policy "chat_files delete" on "storage"."objects";
drop policy "chat_files insert" on "storage"."objects";
drop policy "chat_files select" on "storage"."objects";
drop policy "chat_files update" on "storage"."objects";
Before I publish my application, I would like to create a proven flow for managing changes in the database, because I expect to be making quite a lot of changes to it. This is where the newly launched branching 2.0 came in handy -> the flow would be to create a branch, make it a persistent branch, and it will be my development environment from where I will push all changes -> but when I create a new branch and want to merge it immediately, I get a log that shows me changes on 500 lines, and these changes are often of this type:
This worries me a little. Is this normal behavior? Is there just a problem in snytax, or? Thanks!
drop trigger if exists "trg_sync_avatar_option_upd" on "auth"."users";
drop policy "Allow authenticated users to upload documents" on "storage"."objects";
drop policy "Allow service role to read templates" on "storage"."objects";
drop policy "Allow users to read their documents" on "storage"."objects";
drop policy "Anyone can view files" on "storage"."objects";
drop policy "Upload of photo" on "storage"."objects";
drop policy "chat_files delete" on "storage"."objects";
drop policy "chat_files insert" on "storage"."objects";
drop policy "chat_files select" on "storage"."objects";
drop policy "chat_files update" on "storage"."objects";