mirror of
https://github.com/zadam/trilium.git
synced 2024-12-25 08:43:03 +08:00
drop links and images tables
This commit is contained in:
parent
3386cd790e
commit
6d603eda86
2 changed files with 3 additions and 1 deletions
2
migrations/0046__drop_links_and_images.sql
Normal file
2
migrations/0046__drop_links_and_images.sql
Normal file
|
@ -0,0 +1,2 @@
|
|||
DROP TABLE IF EXISTS links;
|
||||
DROP TABLE IF EXISTS images;
|
|
@ -4,7 +4,7 @@ const options = require('./options');
|
|||
const fs = require('fs-extra');
|
||||
const log = require('./log');
|
||||
|
||||
const APP_DB_VERSION = 45;
|
||||
const APP_DB_VERSION = 46;
|
||||
const MIGRATIONS_DIR = "migrations";
|
||||
|
||||
async function migrate() {
|
||||
|
|
Loading…
Reference in a new issue