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

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

9 lines
301 B
TypeScript
Raw Normal View History

import { Patch } from '../database/types';
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 },
2022-05-24 11:34:41 +00:00
{ name: 'updateSchemas', version: '0.5.0-beta.0', patch: updateSchemas },
] as Patch[];