1
1
Fork 0
mirror of https://github.com/zadam/trilium.git synced 2025-02-23 22:44:44 +08:00
trilium/history.sql
2017-09-21 22:20:10 -04:00

6 lines
No EOL
174 B
SQL

CREATE TABLE `notes_history` (
`id` INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT,
`note_id` INTEGER NOT NULL,
`note_text` TEXT NOT NULL,
`date_modified` INTEGER NOT NULL
);