23 lines
440 B
TypeScript
23 lines
440 B
TypeScript
import { buildTableHelper } from '@/modules/core/dbSchema'
|
|
|
|
export const AccSyncItems = buildTableHelper('acc_sync_items', [
|
|
'id',
|
|
'projectId',
|
|
'modelId',
|
|
'automationId',
|
|
'authorId',
|
|
'accRegion',
|
|
'accHubId',
|
|
'accProjectId',
|
|
'accRootProjectFolderUrn',
|
|
'accFileName',
|
|
'accFileLineageUrn',
|
|
'accFileVersionIndex',
|
|
'accFileVersionUrn',
|
|
'accFileViewName',
|
|
'accWebhookId',
|
|
'status',
|
|
'createdAt',
|
|
'updatedAt'
|
|
])
|