-- Create the migration-blobs bucket
insert into storage.buckets
(id, name, public, file_size_limit)
select *
from ( values ('migration-blobs', 'migration-blobs', false, 5368709120) ) as data(id, name, public, file_size_limit)
where not exists (select 1
from storage.buckets
where id = data.id);
-- Create the migration-blobs bucket
insert into storage.buckets
(id, name, public, file_size_limit)
select *
from ( values ('migration-blobs', 'migration-blobs', false, 5368709120) ) as data(id, name, public, file_size_limit)
where not exists (select 1
from storage.buckets
where id = data.id);