Allow external images from whitelisted senders to be displayed: Closes #5642
This also cleans up some of the update logic for ContactTable, which could drop contacts' human-readable names when updating their importance.
This commit is contained in:
parent
6ce275f61d
commit
974e9459a3
17 changed files with 392 additions and 148 deletions
|
|
@ -8,3 +8,4 @@ install(FILES version-005.sql DESTINATION ${SQL_DEST})
|
|||
install(FILES version-006.sql DESTINATION ${SQL_DEST})
|
||||
install(FILES version-007.sql DESTINATION ${SQL_DEST})
|
||||
install(FILES version-008.sql DESTINATION ${SQL_DEST})
|
||||
install(FILES version-009.sql DESTINATION ${SQL_DEST})
|
||||
|
|
|
|||
6
sql/version-009.sql
Normal file
6
sql/version-009.sql
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
--
|
||||
-- Add flags column to the ContactTable
|
||||
--
|
||||
|
||||
ALTER TABLE ContactTable ADD COLUMN flags TEXT;
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue