Skip to content

Commit

Permalink
INTG-3307 - adding note field to schedule occurrences (#58)
Browse files Browse the repository at this point in the history
  • Loading branch information
sc-gv authored Jun 12, 2024
1 parent 4c1d42d commit 45f74b5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion SafetyCulture.pq
Original file line number Diff line number Diff line change
Expand Up @@ -303,7 +303,8 @@ ScheduleOccurrenceType = type table [
occurrence_status = text,
assignee_status = text,
audit_id = nullable text,
completed_at = nullable datetimezone
completed_at = nullable datetimezone,
note = nullable text
];

ActionType = type table [
Expand Down
2 changes: 1 addition & 1 deletion SafetyCulture.query.pq
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ shared SafetyCulture.UnitTest = [
Fact("We have Schedule Assignees data?", true, not Table.IsEmpty(ScheduleAssignees)),
Fact("Schedule Assignees has 5 columns", 5, List.Count(Table.ColumnNames(ScheduleAssignees))),
Fact("We have Schedule Occurrences data?", true, not Table.IsEmpty(ScheduleOccurrences)),
Fact("Schedule Occurrences has 12 columns", 12, List.Count(Table.ColumnNames(ScheduleOccurrences))),
Fact("Schedule Occurrences has 14 columns", 14, List.Count(Table.ColumnNames(ScheduleOccurrences))),
Fact("We have Actions data?", true, not Table.IsEmpty(Actions)),
Fact("Schedules has 16 columns", 16, List.Count(Table.ColumnNames(Actions))),
Fact("We have Action Assignees data?", true, not Table.IsEmpty(ActionAssignees)),
Expand Down

0 comments on commit 45f74b5

Please sign in to comment.