mirror of
https://github.com/laurent22/joplin.git
synced 2024-12-12 08:54:00 +02:00
9 lines
241 B
TypeScript
9 lines
241 B
TypeScript
import { SqlQuery } from '../types';
|
|
|
|
export default (): (SqlQuery|string)[] => {
|
|
return [
|
|
'ALTER TABLE `resources` ADD COLUMN blob_updated_time INT NOT NULL DEFAULT 0',
|
|
'UPDATE `resources` SET blob_updated_time = updated_time',
|
|
];
|
|
};
|