Add feature matrix entry for 9.2, hide 7.4 for layout reasons
authorMagnus Hagander <magnus@hagander.net>
Sun, 27 May 2012 19:07:06 +0000 (21:07 +0200)
committerMagnus Hagander <magnus@hagander.net>
Sun, 27 May 2012 19:07:06 +0000 (21:07 +0200)
commit88ccd0d6b8c23918d4435f7d8c394159af82c548
tree78f925ed3ebfddbf72046197b302e3a41b5a31bc
parentf963e559d5cdb459859c87681889eae31420a018
Add feature matrix entry for 9.2, hide 7.4 for layout reasons

Requires manual sql to be run on all installations:

BEGIN;
ALTER TABLE featurematrix_feature ADD COLUMN v92 int;
UPDATE featurematrix_feature SET v92=v91;
ALTER TABLE featurematrix_feature ALTER COLUMN v92 SET NOT NULL;
COMMIT;
pgweb/featurematrix/models.py