Last active
April 18, 2025 09:21
-
-
Save uberboom/aa7df30db9062123b5887ebacd2f6b05 to your computer and use it in GitHub Desktop.
Convert Omnivore SQLite database for importing into Raindrop.io
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- Omnivore timestamp is based on 2001-01-01 (978303600) | |
select | |
item.ZDOWNLOADURL as url, | |
null as folder, | |
item.ZSITENAME as title, | |
null as note, | |
GROUP_CONCAT(label.ZNAME, ', ') as tags, | |
datetime(item.ZCREATEDAT + 978303600, 'unixepoch') AS created | |
from ZLINKEDITEM item | |
left join Z_2LABELS rel on item.Z_PK = rel.Z_2LINKEDITEMS | |
left join ZLINKEDITEMLABEL label ON label.Z_PK = rel.Z_3LABELS1 | |
group by item.Z_PK |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment