Upgrade from 7.3.1 to 7.4 error on Ubuntu 12.04.
Created by: abcfy2
I download the 7.4 from https://downloads-packages.s3.amazonaws.com/ubuntu-12.04/gitlab_7.4.0-omnibus-1_amd64.deb
and use sudo apt-get install gitlab_7.4.0-omnibus-1_amd64.deb
to upgrade from 7.3.1 to 7.4. But finally I get 500 error.
Here is the gitlab-rails prodution log:
Processing by DashboardController#show as HTML
PG::Error: ERROR: relation "members" does not exist
LINE 5: WHERE a.attrelid = '"members"'::regclass
^
: SELECT a.attname, format_type(a.atttypid, a.atttypmod),
pg_get_expr(d.adbin, d.adrelid), a.attnotnull, a.atttypid, a.atttypmod
FROM pg_attribute a LEFT JOIN pg_attrdef d
ON a.attrelid = d.adrelid AND a.attnum = d.adnum
WHERE a.attrelid = '"members"'::regclass
AND a.attnum > 0 AND NOT a.attisdropped
ORDER BY a.attnum
Completed 500 Internal Server Error in 183ms
ActiveRecord::StatementInvalid (PG::Error: ERROR: relation "members" does not exist
LINE 5: WHERE a.attrelid = '"members"'::regclass
^
: SELECT a.attname, format_type(a.atttypid, a.atttypmod),
pg_get_expr(d.adbin, d.adrelid), a.attnotnull, a.atttypid, a.atttypmod
FROM pg_attribute a LEFT JOIN pg_attrdef d
ON a.attrelid = d.adrelid AND a.attnum = d.adnum
WHERE a.attrelid = '"members"'::regclass
AND a.attnum > 0 AND NOT a.attisdropped
ORDER BY a.attnum
):
app/models/user.rb:295:in `authorized_projects'
app/controllers/dashboard_controller.rb:77:in `load_projects'
How to solve this issue ?