mirror of
https://github.com/laurent22/joplin.git
synced 2024-12-18 09:35:20 +02:00
9 lines
175 B
TypeScript
9 lines
175 B
TypeScript
import addMigrationFile from '../addMigrationFile';
|
|
import { SqlQuery } from '../types';
|
|
|
|
export default (): (SqlQuery|string)[] => {
|
|
return [
|
|
addMigrationFile(42),
|
|
];
|
|
};
|