mattermost-mobile/app/products/playbooks/constants/database.ts
Guillermo Vayá 87395e1210
[MM-65984] DB changes to handle Playbook Run Attributes (#9172)
* 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>
2025-10-12 21:48:50 +02:00

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',
};