The Event Students database table is annual, meaning that Event Students data is stored in a unique table for each year (event_students_2025.id, event_students_2024.id, etc.).
| Table Name | Field Name | Description | Default Value | Is Nullable | Data Type | Char Limit |
|---|---|---|---|---|---|---|
| event_students | attended | Attended Event (Attended = 1, Not Attended = 0) | 0 | yes | int | |
| event_students | booked | Event Booked (Booked = 1, Not Booked = 0) | 0 | yes | tinyint | |
| event_students | event_id | Unique ID assigned to each event | int | |||
| event_students | event_session_id | Unique ID assigned to each event session | int | |||
| event_students | id | Unique ID assigned to each event | int | |||
| event_students | organization_id | Unique ID assigned to each Enroll customer | int | |||
| event_students | status | RSVP Event Status (Submitted = 1, Not Submitted = -1) | 1 | yes | int | |
| event_students | student_id | Unique ID assigned to each student by the system | int | |||
| event_students | created_at | Date and time the event record was created for this student | yes | timestamp | ||
| event_students | updated_at | Most recent date and time that the event record was updated for this student | yes | timestamp | ||
| event_students | legacy_id | Unique ID from the legacy system that corresponds to the same field in Enroll | yes | int | ||
| event_students | updated_at | Most recent date and time that the event student record was updated | yes | timestamp |
Column Header Definitions
- Table Name: Name of database table displayed in Enroll when selecting fields
- Field Name: Name of field displayed in Enroll when selecting fields
- Description: What data is stored in the field
- Default Value: Value automatically assigned by the system as a starting value
- Is Nullable: Field is permitted to have a NULL value
- Data Type:
- datetime: stores date and time as YYYY-MM-DD HH:MM:SS using 24 hour clock
- double: a way to store decimal numbers with a higher degree of precision
- enum: enumerated, a set of named values (ex: offered, waiting)
- int: integer, whole numbers like 155, 0, -20, supports a large range
- json: text based format that stores/transmits data to be displayed on a web page
- text: variable length data that supports a large maximum length
- time: stores time of day as HH:MM:SS using 24 hour clock
- timestamp: stores date and time as YYYY-MM-DD HH:MM:SS using 24 hour clock
- tinyint: small range of integers
- varchar: variable length character that supports alphanumeric values
- Char Limit: Character limit on the field that cannot be exceeded
Comments
0 comments
Article is closed for comments.