status-go/protocol/migrations/sqlite/1622464519_add_chat_description.up.sql
Andrea Maria Piana 10becb4902 Fix order of migration
The previous migration was added but not as the last one, resulting in
being skipped on client who had already migrated
2021-06-02 14:16:29 +02:00

3 lines
93 B
SQL

ALTER TABLE chats ADD COLUMN description TEXT DEFAULT "";
UPDATE chats SET description = "";