You've already forked joplin
mirror of
https://github.com/laurent22/joplin.git
synced 2025-07-03 23:50:33 +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] };
|
||
|
};
|