Commit 81965c7f authored by Yorick Peterse's avatar Yorick Peterse

Resolved conflict in EE downgrading guide

This has simply been copied over from CE to prevent any future
conflicts.
parent 8302056b
...@@ -24,24 +24,14 @@ repositories to use Git LFS before downgrading to the Community Edition. ...@@ -24,24 +24,14 @@ repositories to use Git LFS before downgrading to the Community Edition.
### Remove Jenkins CI Service entries from the database ### Remove Jenkins CI Service entries from the database
<<<<<<< HEAD
The `JenkinsService` and `JenkinsDeprecatedService` classes are only available on the
Enterprise Edition codebase, so if you downgrade to the Community Edition, you'll come
across an error similar to the following:
=======
The `JenkinsService` class is only available on the Enterprise Edition codebase, The `JenkinsService` class is only available on the Enterprise Edition codebase,
so if you downgrade to the Community Edition, you'll come across the following so if you downgrade to the Community Edition, you'll come across the following
error: error:
>>>>>>> 6c0ed6399054db00d8abcc33ad2aa7df59de52bf
``` ```
Completed 500 Internal Server Error in 497ms (ActiveRecord: 32.2ms) Completed 500 Internal Server Error in 497ms (ActiveRecord: 32.2ms)
<<<<<<< HEAD
ActionView::Template::Error (The single-table inheritance mechanism failed to locate the subclass: 'JenkinsDeprecatedService'. This
=======
ActionView::Template::Error (The single-table inheritance mechanism failed to locate the subclass: 'JenkinsService'. This ActionView::Template::Error (The single-table inheritance mechanism failed to locate the subclass: 'JenkinsService'. This
>>>>>>> 6c0ed6399054db00d8abcc33ad2aa7df59de52bf
error is raised because the column 'type' is reserved for storing the class in case of inheritance. Please rename this error is raised because the column 'type' is reserved for storing the class in case of inheritance. Please rename this
column if you didn't intend it to be used for storing the inheritance class or overwrite Service.inheritance_column to column if you didn't intend it to be used for storing the inheritance class or overwrite Service.inheritance_column to
use another column for that information.) use another column for that information.)
...@@ -49,31 +39,18 @@ use another column for that information.) ...@@ -49,31 +39,18 @@ use another column for that information.)
All services are created automatically for every project you have, so in order All services are created automatically for every project you have, so in order
to avoid getting this error, you need to remove all instances of the to avoid getting this error, you need to remove all instances of the
<<<<<<< HEAD
`JenkinsService` and `JenkinsDeprecatedService` from your database:
=======
`JenkinsService` from your database: `JenkinsService` from your database:
>>>>>>> 6c0ed6399054db00d8abcc33ad2aa7df59de52bf
**Omnibus Installation** **Omnibus Installation**
``` ```
$ sudo gitlab-rails runner "Service.where(type: 'JenkinsService').delete_all" $ sudo gitlab-rails runner "Service.where(type: 'JenkinsService').delete_all"
<<<<<<< HEAD
$ sudo gitlab-rails runner "Service.where(type: 'JenkinsDeprecatedService').delete_all"
=======
>>>>>>> 6c0ed6399054db00d8abcc33ad2aa7df59de52bf
``` ```
**Source Installation** **Source Installation**
``` ```
<<<<<<< HEAD
$ RAILS_ENV=production bundle exec rails runner "Service.where(type: 'JenkinsService').delete_all"
$ RAILS_ENV=production bundle exec rails runner "Service.where(type: 'JenkinsDeprecatedService').delete_all"
=======
$ bundle exec rails runner "Service.where(type: 'JenkinsService').delete_all" production $ bundle exec rails runner "Service.where(type: 'JenkinsService').delete_all" production
>>>>>>> 6c0ed6399054db00d8abcc33ad2aa7df59de52bf
``` ```
## Downgrade to CE ## Downgrade to CE
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment