mirror of
https://github.com/laurent22/joplin.git
synced 2024-12-18 09:35:20 +02:00
8 lines
184 B
TypeScript
8 lines
184 B
TypeScript
import { SqlQuery } from '../types';
|
|
|
|
export default (): (SqlQuery|string)[] => {
|
|
return [
|
|
'ALTER TABLE sync_items ADD COLUMN sync_warning_ignored INT NOT NULL DEFAULT "0"',
|
|
];
|
|
};
|