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
8 lines
296 B
SQL
8 lines
296 B
SQL
DELETE FROM timeline WHERE id IN
|
|
(
|
|
SELECT timeline.id FROM timeline
|
|
INNER JOIN timeline_definition ON timeline.timeline_id = timeline_definition.id
|
|
WHERE timeline_definition.query LIKE 'followed or [%]' OR
|
|
timeline_definition.query = 'local' OR
|
|
timeline_definition.query = 'all'
|
|
);
|