status-go/appdatabase/migrations/sql/1655462032_create_bookmarks_deleted_at_index.up.sql
Pascal Precht c855272340 feat: add garbage collection for soft deleted bookmarks
This introduces a simple garbage collection which checks for all soft
deleted bookmarks (`removed = 1`) which have been marked for garbage
collection more than 30 days ago from the time of bootstapping the
messenger.

Closes #2705
2022-06-17 14:21:21 +02:00

3 lines
81 B
SQL

CREATE INDEX deleted_at_bookmarks ON bookmarks (deleted_at) WHERE (deleted_at);