2
0
mirror of https://github.com/frappe/books.git synced 2024-09-20 11:29:00 +00:00
books/backend/patches/index.ts

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

32 lines
795 B
TypeScript
Raw Normal View History

import { Patch } from '../database/types';
2022-07-08 17:51:21 +00:00
import addUOMs from './addUOMs';
import createInventoryNumberSeries from './createInventoryNumberSeries';
2022-08-16 11:32:35 +00:00
import fixRoundOffAccount from './fixRoundOffAccount';
import testPatch from './testPatch';
2022-05-24 11:34:41 +00:00
import updateSchemas from './updateSchemas';
export default [
2022-04-22 11:02:03 +00:00
{ name: 'testPatch', version: '0.5.0-beta.0', patch: testPatch },
{
name: 'updateSchemas',
version: '0.5.0-beta.0',
patch: updateSchemas,
priority: 100,
},
2022-07-08 17:51:21 +00:00
{
name: 'addUOMs',
version: '0.6.0-beta.0',
patch: addUOMs,
},
2022-08-16 11:32:35 +00:00
{
name: 'fixRoundOffAccount',
version: '0.6.3-beta.0',
patch: fixRoundOffAccount,
},
{
name: 'createInventoryNumberSeries',
version: '0.6.6-beta.0',
patch: createInventoryNumberSeries,
2022-08-16 11:32:35 +00:00
},
] as Patch[];