Update readme.md

This commit is contained in:
Li 2024-04-23 09:47:16 +00:00
parent 29e0391fdc
commit 9c22b0f170
1 changed files with 1 additions and 1 deletions

View File

@ -20,7 +20,7 @@ the library.db has had the following trigger added :
```
CREATE TRIGGER CONTENT_ID_MEMES AFTER INSERT ON LibraryTable
BEGIN
UPDATE LibraryTable SET content_id="UM0105-" || title_id || "-0000000000000000" WHERE title_id = new.title_id;
UPDATE LibraryTable SET content_id="UM0105-" || title_id || "_00-0000000000000000" WHERE title_id = new.title_id;
END;
```