github.com/status-im/status-go@v1.1.0/appdatabase/migrations/sql/1650616788_add_communities_archives_info_table.up.sql (about)

     1  CREATE TABLE IF NOT EXISTS communities_archive_info (
     2    community_id TEXT PRIMARY KEY ON CONFLICT REPLACE,
     3    magnetlink_clock INT NOT NULL DEFAULT 0,
     4    last_message_archive_end_date INT NOT NULL DEFAULT 0
     5  )
     6