diff options
author | alecpl <alec@alec.pl> | 2010-03-06 14:13:25 +0000 |
---|---|---|
committer | alecpl <alec@alec.pl> | 2010-03-06 14:13:25 +0000 |
commit | 94fe9ca1a87b20ddeee55024986e95ca72097af6 (patch) | |
tree | c991134bf8f7cf1d98cf7230d7e67d3a23269f37 /SQL/postgres.initial.sql | |
parent | 1163db99d45baa33894d70f53d93c3783c8e9d27 (diff) |
- re-fix (#1486474) + require MySQL 4.0.8 + add index/update in identities table
Diffstat (limited to 'SQL/postgres.initial.sql')
-rw-r--r-- | SQL/postgres.initial.sql | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/SQL/postgres.initial.sql b/SQL/postgres.initial.sql index a52a01f91..c634b4b3b 100644 --- a/SQL/postgres.initial.sql +++ b/SQL/postgres.initial.sql @@ -78,7 +78,7 @@ CREATE TABLE identities ( html_signature integer DEFAULT 0 NOT NULL ); -CREATE INDEX identities_user_id_idx ON identities (user_id); +CREATE INDEX identities_user_id_idx ON identities (user_id, del); -- |