1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-01-23 18:53:36 +02:00

9 lines
175 B
TypeScript
Raw Normal View History

import addMigrationFile from '../addMigrationFile';
import { SqlQuery } from '../types';
export default (): (SqlQuery|string)[] => {
return [
addMigrationFile(42),
];
};