2
0
mirror of https://github.com/frappe/books.git synced 2024-11-08 14:50:56 +00:00
books/backend/patches/setPaymentReferenceType.ts

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

10 lines
270 B
TypeScript
Raw Normal View History

import { DatabaseManager } from '../database/manager';
async function execute(dm: DatabaseManager) {
await dm.db!.knex!('Payment')
.where({ referenceType: null })
.update({ referenceType: 'SalesInvoice' });
}
export default { execute, beforeMigrate: true };