Changeset 923 in subversion


Ignore:
Timestamp:
Nov 25, 2007 10:52:36 AM (5 years ago)
Author:
thomasb
Message:

Fix Postgresql upgrade script (#1484668)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/roundcubemail/SQL/postgres.update.sql

    r509 r923  
    66ALTER TABLE "messages" ADD UNIQUE (user_id, cache_key, uid); 
    77 
    8 ALTER TABLE "identities" ADD html_signature integer DEFAULT 0 NOT NULL; 
     8ALTER TABLE "identities" ADD html_signature INTEGER; 
     9ALTER TABLE "identities" ALTER html_signature SET DEFAULT 0; 
     10UPDATE identities SET html_signature = 0; 
     11ALTER TABLE "identities" ALTER html_signature SET NOT NULL; 
    912 
Note: See TracChangeset for help on using the changeset viewer.