this repo has no description
at main 232 B view raw
1CREATE TABLE IF NOT EXISTS images_by_post ( 2 post_uri TEXT, 3 image_index INT, 4 cid TEXT, 5 alt TEXT, 6 width INT, 7 height INT, 8 size INT, 9 mime TEXT, 10 PRIMARY KEY (post_uri, image_index), 11) WITH CLUSTERING ORDER BY (image_index ASC);