Bundles Schema
ext_bundles - Course Bundles
Section titled “ext_bundles - Course Bundles”Schema: ext_bundles | Auto-generated on 2026-03-30
bundles
Section titled “bundles”Grouped course packages for sale.
| Column | Type | Nullable | Default |
|---|---|---|---|
id | uuid | NO | gen_random_uuid() |
instructor_id | uuid | NO | — |
title | text | NO | — |
slug | text | NO | — |
description | text | YES | — |
thumbnail_url | text | YES | — |
price | numeric | NO | — |
compare_price | numeric | YES | — |
status | text | NO | 'draft' |
course_count | integer | NO | 0 |
sales_count | integer | NO | 0 |
published_at | timestamptz | YES | — |
created_at | timestamptz | NO | now() |
updated_at | timestamptz | NO | now() |
bundle_courses
Section titled “bundle_courses”Courses included in a bundle.
| Column | Type | Nullable | Default |
|---|---|---|---|
id | uuid | NO | gen_random_uuid() |
bundle_id | uuid | NO | — |
course_id | uuid | NO | — |
sort_order | integer | NO | 0 |
created_at | timestamptz | NO | now() |
bundle_purchases
Section titled “bundle_purchases”Bundle purchase records.
| Column | Type | Nullable | Default |
|---|---|---|---|
id | uuid | NO | gen_random_uuid() |
bundle_id | uuid | NO | — |
buyer_id | uuid | NO | — |
payment_id | uuid | YES | — |
amount | numeric | NO | — |
status | text | NO | 'pending' |
created_at | timestamptz | NO | now() |
updated_at | timestamptz | NO | now() |