storage.buckets
| # | Name | Type | Nullable | Default | PK |
|---|---|---|---|---|---|
| 1 | id | text | NO | — | PK |
| 2 | name | text | NO | — | |
| 3 | owner | uuid | YES | — | |
| 4 | created_at | timestamp with time zone | YES | now() | |
| 5 | updated_at | timestamp with time zone | YES | now() |
Indexes
| Name | Definition | Unique | Primary | Size |
|---|---|---|---|---|
| bname | CREATE UNIQUE INDEX bname ON storage.buckets USING btree (name) | ✓ | 8192 bytes | |
| buckets_pkey | CREATE UNIQUE INDEX buckets_pkey ON storage.buckets USING btree (id) | ✓ | ✓ | 8192 bytes |
Constraints
| Name | Type | Definition |
|---|---|---|
| buckets_owner_fkey | FOREIGN KEY | FOREIGN KEY (owner) REFERENCES auth.users(id) |
| buckets_pkey | PRIMARY KEY | PRIMARY KEY (id) |