Field |
Field Type |
Null |
Notes |
Description |
NAME |
nvarchar(100) |
|
Default = '' |
The name of the timetable. |
DESCRIPTION |
nvarchar(255) |
|
Default = '' |
The description of the timetable. |
SCHEDULETIMECODE |
tinyint |
|
Default = 0 |
Schedule class meetings option. |
SCHEDULETIME |
nvarchar(8) (Computed) |
 |
CASE [SCHEDULETIMECODE] WHEN 0 THEN N'PERIODS' WHEN 1 THEN N'ANY_TIME' END |
Provides a translation for the 'SCHEDULETIMECODE' field. |
DATEADDED |
datetime |
|
Default = getdate() |
Indicates the date this record was added. |
DATECHANGED |
datetime |
|
Default = getdate() |
Indicates the date this record was last changed. |
TS |
timestamp |
|
|
Timestamp. |
TSLONG |
bigint (Computed) |
 |
CONVERT(bigint, TS) |
Numeric representation of the timestamp. |
ISACTIVE |
bit |
|
Default = 1 |
Indicated whether a timetable is active or inactive |