Files
payloadcms/test/database/up-down-migration/migrations/index.ts
Sasha 6888f13f27 fix(db-postgres): properly escape the ' character (#12590)
Fixes the issue when `defaultValue` contains `'` it'd double the amount
of `'` for the `DEFAULT` statement in the generated migration
2025-05-29 15:27:07 -04:00

10 lines
215 B
TypeScript

import * as migration_20250528_153134 from './20250528_153134.js'
export const migrations = [
{
up: migration_20250528_153134.up,
down: migration_20250528_153134.down,
name: '20250528_153134',
},
]