feat(core): Add migration to create model for folders feature (#13060)

This commit is contained in:
Ricardo Espinoza
2025-02-12 08:51:04 -05:00
committed by GitHub
parent aedea7a76c
commit 03f4ed8445
9 changed files with 147 additions and 1 deletions

View File

@@ -79,6 +79,7 @@ import { AddManagedColumnToCredentialsTable1734479635324 } from '../common/17344
import { AddStatsColumnsToTestRun1736172058779 } from '../common/1736172058779-AddStatsColumnsToTestRun';
import { CreateTestCaseExecutionTable1736947513045 } from '../common/1736947513045-CreateTestCaseExecutionTable';
import { AddErrorColumnsToTestRuns1737715421462 } from '../common/1737715421462-AddErrorColumnsToTestRuns';
import { CreateFolderTable1738709609940 } from '../common/1738709609940-CreateFolderTable';
export const postgresMigrations: Migration[] = [
InitialMigration1587669153312,
@@ -160,4 +161,5 @@ export const postgresMigrations: Migration[] = [
AddStatsColumnsToTestRun1736172058779,
CreateTestCaseExecutionTable1736947513045,
AddErrorColumnsToTestRuns1737715421462,
CreateFolderTable1738709609940,
];