Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(migrations):Update 20240000000010_squashed_file_uploads.sql #2

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 11 additions & 6 deletions supabase/migrations/20240000000010_squashed_file_uploads.sql
Original file line number Diff line number Diff line change
@@ -1,8 +1,13 @@
-- Drop existing tables and objects if they exist
DROP TRIGGER IF EXISTS tr_file_version ON public.file_uploads;
DROP FUNCTION IF EXISTS set_file_version();
DROP FUNCTION IF EXISTS get_next_file_version();
DROP TABLE IF EXISTS public.file_uploads;
-- Drop existing tables and objects if they exist within DO $$ block, which will prevent errors if the table does not exist.
DO $$
BEGIN
IF EXISTS (SELECT 1 FROM information_schema.tables WHERE table_name = 'file_uploads' AND table_schema = 'public') THEN
DROP TRIGGER IF EXISTS tr_file_version ON public.file_uploads;
DROP FUNCTION IF EXISTS set_file_version();
DROP FUNCTION IF EXISTS get_next_file_version();
DROP TABLE IF EXISTS public.file_uploads;
END IF;
END $$;

-- Create the file_uploads table with all required columns and constraints
CREATE TABLE public.file_uploads (
@@ -148,4 +153,4 @@ GRANT SELECT ON public.file_uploads TO public;
GRANT ALL ON storage.objects TO authenticated;
GRANT SELECT ON storage.objects TO public;
GRANT ALL ON storage.buckets TO authenticated;
GRANT SELECT ON storage.buckets TO public;
GRANT SELECT ON storage.buckets TO public;