You've already forked joplin
mirror of
https://github.com/laurent22/joplin.git
synced 2025-11-26 22:41:17 +02:00
8 lines
186 B
TypeScript
8 lines
186 B
TypeScript
import { SqlQuery } from '../types';
|
|
|
|
export default (): (SqlQuery|string)[] => {
|
|
return [
|
|
'ALTER TABLE sync_items ADD COLUMN remote_item_updated_time INT NOT NULL DEFAULT 0',
|
|
];
|
|
};
|