SQL command instead of js sdk
Is there a sql command to create a signed link? And is there a sql command to create a bucket with params like max file size or restricted MIME types?
buckets table you will find the other columns that you can set too e.g. file_size_limit, allowed_mime_typesbucketsfile_size_limitallowed_mime_typesinsert into storage.buckets (id, name, public)
values ('user_images', 'user_images', true);