2
0
mirror of https://github.com/frappe/books.git synced 2025-01-25 16:18:33 +00:00
books/backend/patches/index.ts

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

20 lines
447 B
TypeScript
Raw Normal View History

import { Patch } from '../database/types';
2022-07-08 23:21:21 +05:30
import addUOMs from './addUOMs';
import testPatch from './testPatch';
2022-05-24 17:04:41 +05:30
import updateSchemas from './updateSchemas';
export default [
2022-04-22 16:32:03 +05:30
{ 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 23:21:21 +05:30
{
name: 'addUOMs',
version: '0.6.0-beta.0',
patch: addUOMs,
},
] as Patch[];