Creates a new Storage bucket
buckets table permissions: insertobjects table permissions: noneA unique identifier for the bucket you are creating.
const { data, error } = await supabase
  .storage
  .createBucket('avatars', {
    public: false,
    allowedMimeTypes: ['image/png'],
    fileSizeLimit: 1024
  })