18 lines
698 B
JavaScript
18 lines
698 B
JavaScript
/**
|
|
* Compatibility marker for the historical payment partial-refund migration.
|
|
*
|
|
* Some long-lived local databases have this migration recorded in pgmigrations,
|
|
* but the repository no longer carried the file. node-pg-migrate rejects later
|
|
* migrations when an already-run migration is missing from disk, so keep this
|
|
* no-op marker to preserve ordering between 060 and 062.
|
|
*
|
|
* Current partial-refund schema support is already covered by previous
|
|
* reporting/POS migrations (notably 053 and 056).
|
|
*/
|
|
|
|
/** @param {import('pg-migrate').MigrationBuilder} _pgm */
|
|
export const up = (_pgm) => {};
|
|
|
|
/** @param {import('pg-migrate').MigrationBuilder} _pgm */
|
|
export const down = (_pgm) => {};
|