mirror of
https://github.com/laurent22/joplin.git
synced 2024-12-18 09:35:20 +02:00
5 lines
202 B
TypeScript
5 lines
202 B
TypeScript
|
export default (num: number) => {
|
||
|
const timestamp = Date.now();
|
||
|
return { sql: 'INSERT INTO migrations (number, created_time, updated_time) VALUES (?, ?, ?)', params: [num, timestamp, timestamp] };
|
||
|
};
|