I’ve installed Gitlab-ce using the omnibus deb on Ubuntu 14.04. The only area that I can find anywhere is the following from PostGres as shown below. Running sudo gitlab-ci-rake db:migrate:status reports all migrations “up”. Thoughts?
ERROR: relation "projects" does not exist at character 323
STATEMENT: 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 = '"projects"'::regclass
AND a.attnum > 0 AND NOT a.attisdropped
ORDER BY a.attnum