diff options
| author | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2010-04-15 07:54:44 +0000 |
|---|---|---|
| committer | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2010-04-15 07:54:44 +0000 |
| commit | 58576153fd195361b567cfb2e55f785e872909dd (patch) | |
| tree | 4dd936f955b924d8e7a7bd4d63d1c8152c9e5fe1 /roundcubemail/SQL/postgres.update.sql | |
| parent | c7adbfff46a087d3a899cf08be61a025de05f5ee (diff) | |
- Fix: postgres doens't support AFTER clause
git-svn-id: https://svn.roundcube.net/trunk@3491 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/SQL/postgres.update.sql')
| -rw-r--r-- | roundcubemail/SQL/postgres.update.sql | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/roundcubemail/SQL/postgres.update.sql b/roundcubemail/SQL/postgres.update.sql index dc22b9030..762f5fbc7 100644 --- a/roundcubemail/SQL/postgres.update.sql +++ b/roundcubemail/SQL/postgres.update.sql @@ -49,7 +49,7 @@ CREATE INDEX contacts_user_id_idx ON contacts (user_id, email); DROP INDEX identities_user_id_idx; CREATE INDEX identities_user_id_idx ON identities (user_id, del); -ALTER TABLE identities ADD changed timestamp with time zone DEFAULT now() NOT NULL AFTER user_id; +ALTER TABLE identities ADD changed timestamp with time zone DEFAULT now() NOT NULL; CREATE SEQUENCE contactgroups_ids INCREMENT BY 1 |
