mirror of
https://github.com/frappe/books.git
synced 2024-11-08 14:50:56 +00:00
d0571a2450
- update files to ignore - delete babel.config.js
12 lines
335 B
TypeScript
12 lines
335 B
TypeScript
import { DatabaseManager } from '../database/manager';
|
|
|
|
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
|
async function execute(dm: DatabaseManager) {
|
|
/**
|
|
* Execute function will receive the DatabaseManager which is to be used
|
|
* to apply database patches.
|
|
*/
|
|
}
|
|
|
|
export default { execute, beforeMigrate: true };
|