Home

Create a bucket

Creates a new Storage bucket

  • RLS policy permissions required:
    • buckets table permissions: insert
    • objects table permissions: none
  • Refer to the Storage guide on how access control works
Parameters
  • id
    REQUIRED
    string

    A unique identifier for the bucket you are creating.

  • options
    Optional
    object

const { data, error } = await supabase
  .storage
  .createBucket('avatars', { public: false })