File: version-013.sql

package info (click to toggle)
geary 43.0-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 14,768 kB
  • sloc: javascript: 962; ansic: 722; sql: 247; xml: 173; python: 30; sh: 24; makefile: 23
file content (9 lines) | stat: -rw-r--r-- 364 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
--
-- Add the disposition column as a string so the client can decide which attachments to show.
-- Since all attachments up to this point have been non-inline, set it to that value (which
-- is defined in src/engine/api/geary-attachment.vala
--

ALTER TABLE MessageAttachmentTable ADD COLUMN disposition INTEGER;
UPDATE MessageAttachmentTable SET disposition=0;