Skip to content

Commit

Permalink
Squash migrations into seed.sql
Browse files Browse the repository at this point in the history
  • Loading branch information
CharlesTaylor7 committed May 8, 2024
1 parent af8054a commit f9dc444
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 4 deletions.
1 change: 0 additions & 1 deletion supabase/migrations/20240508001452_remote_schema.sql

This file was deleted.

1 change: 0 additions & 1 deletion supabase/migrations/20240508021359_remote_schema.sql

This file was deleted.

4 changes: 2 additions & 2 deletions supabase/seed.sql
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@ ALTER DEFAULT PRIVILEGES FOR ROLE "postgres" IN SCHEMA "public" GRANT ALL ON TAB
RESET ALL;

-- storage setup --
insert into "storage"."buckets"
("styles", "styles", true)
insert into "storage"."buckets"("id", "name", "public", "allowed_mime_types")
("styles", "styles", true, '{"text/css"}')
values
on conflict do nothing;

Expand Down

0 comments on commit f9dc444

Please sign in to comment.