mirror of
https://github.com/roundcube/roundcubemail.git
synced 2026-03-03 14:54:01 +01:00
10 lines
304 B
SQL
10 lines
304 B
SQL
-- RoundCube Webmail update script for Postres databases
|
|
-- Updates from version 0.1-beta and older
|
|
|
|
ALTER TABLE "messages" DROP body;
|
|
ALTER TABLE "messages" ADD structure TEXT;
|
|
ALTER TABLE "messages" ADD UNIQUE (cache_key, uid);
|
|
|
|
ALTER TABLE "identities" ADD html_signature integer DEFAULT 0 NOT NULL;
|
|
|