mirror of
https://github.com/TriliumNext/Notes.git
synced 2025-07-28 02:22:26 +08:00
6 lines
174 B
MySQL
6 lines
174 B
MySQL
![]() |
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
|
||
|
);
|