witten
/
luminotes
Archived
1
0
Fork 0
This repository has been archived on 2023-12-16. You can view files and clone it, but cannot push or open issues or pull requests.
luminotes/model/delta/1.1.0.sql

12 lines
314 B
MySQL
Raw Normal View History

update notebook set user_id = (
select user_notebook.user_id
from user_notebook
where notebook_id = notebook.id and read_write = 't' and owner = 't'
limit 1
);
update note set user_id = (
select notebook_current.user_id
from notebook_current
where note.notebook_id = notebook_current.id
);