mirror of
https://git.joinplu.me/Plume/Plume.git
synced 2024-11-12 06:51:21 +00:00
6c8944315a
* remove use of rust in migration rewrite use_timelines_for_feed in pure sql delete tantivy related migration. It will require reintroducing tantivy initialisation in docs fix #702 * Fill timeline from migrations should fix #692 , but probably require some testing
17 lines
877 B
SQL
17 lines
877 B
SQL
INSERT INTO timeline (post_id, timeline_id)
|
|
SELECT posts.id,timeline_definition.id FROM posts,timeline_definition
|
|
WHERE timeline_definition.query = 'all';
|
|
|
|
INSERT INTO timeline (post_id, timeline_id)
|
|
SELECT posts.id,timeline_definition.id FROM posts,timeline_definition
|
|
INNER JOIN blogs ON posts.blog_id = blogs.id
|
|
INNER JOIN instances ON blogs.instance_id = instances.id
|
|
WHERE timeline_definition.query = 'local' and instances.local = true;
|
|
|
|
INSERT INTO timeline (post_id, timeline_id)
|
|
SELECT posts.id,timeline_definition.id FROM posts
|
|
INNER JOIN blog_authors ON posts.blog_id = blog_authors.blog_id
|
|
LEFT JOIN follows ON blog_authors.author_id = follows.following_id
|
|
INNER JOIN timeline_definition ON follows.follower_id = timeline_definition.user_id
|
|
or blog_authors.author_id = timeline_definition.user_id
|
|
WHERE timeline_definition.query LIKE 'followed or [%]';
|