main
Data tableMigration run against the main data table when the project is imported.
calendly.config
| Column | Type | Constraints |
|---|---|---|
| id | SERIAL | not nullprimary key |
| host_name | text | not nulldefault ''::text |
| host_email | text | not nulldefault ''::text |
| meeting_title | text | not nulldefault 'Meeting'::text |
| meeting_duration_minutes | integer | not nulldefault 30 |
| available_days | integer[] | not nulldefault '{1,2,3,4,5}'::integer[] |
| start_time | text | not nulldefault '09:00'::text |
| end_time | text | not nulldefault '18:00'::text |
| days_ahead | integer | not nulldefault 14 |
| timezone | text | not nulldefault 'Europe/Paris'::text |
calendly.bookings
| Column | Type | Constraints |
|---|---|---|
| id | SERIAL | not nullprimary key |
| event_id | text | |
| guest_name | text | not null |
| guest_email | text | not null |
| date | text | not null |
| time_slot | text | not null |
| timezone | text | not null |
| meet_link | text | |
| status | text | not nulldefault 'confirmed'::text |
| created_at | timestamp with time zone | not nulldefault now() |