* db changes * temp tests * missing mock models * test helpers improvement * address naming errors * added comments to schema * x2 * minor corrections * Update app/products/playbooks/database/models/playbook_run_attribute_value.ts Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> * docs --------- Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
10 lines
396 B
TypeScript
10 lines
396 B
TypeScript
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
|
|
export const PLAYBOOK_TABLES = {
|
|
PLAYBOOK_RUN: 'PlaybookRun',
|
|
PLAYBOOK_CHECKLIST: 'PlaybookChecklist',
|
|
PLAYBOOK_CHECKLIST_ITEM: 'PlaybookChecklistItem',
|
|
PLAYBOOK_RUN_ATTRIBUTE: 'PlaybookRunAttribute',
|
|
PLAYBOOK_RUN_ATTRIBUTE_VALUE: 'PlaybookRunAttributeValue',
|
|
};
|