mirror of
https://github.com/laurent22/joplin.git
synced 2025-01-02 12:47:41 +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] };
|
||
|
};
|