mirror of
https://github.com/zadam/trilium.git
synced 2024-11-11 18:08:13 +08:00
5 lines
No EOL
149 B
SQL
5 lines
No EOL
149 B
SQL
ALTER TABLE notes_tree ADD COLUMN is_deleted INTEGER NOT NULL DEFAULT 0;
|
|
|
|
CREATE INDEX `IDX_notes_tree_is_deleted` ON `notes_tree` (
|
|
`is_deleted`
|
|
); |