Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2013-04-10 21:48:21 +0400
committerDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2013-04-10 21:48:21 +0400
commit0415566b3796f500e7f694a0aee4882752d150c1 (patch)
treea4e5ae3bca16a41d99a62098bd3beb30566df0ad /lib/tasks/migrate
parent86e368a8af35fb0f09369630a226c80dc16ae5ec (diff)
Remove wiki migrator. We dont need it any more. Users should migrate to 5.0 first
Diffstat (limited to 'lib/tasks/migrate')
-rw-r--r--lib/tasks/migrate/migrate_wiki.rake42
1 files changed, 0 insertions, 42 deletions
diff --git a/lib/tasks/migrate/migrate_wiki.rake b/lib/tasks/migrate/migrate_wiki.rake
deleted file mode 100644
index 5d9881e45db..00000000000
--- a/lib/tasks/migrate/migrate_wiki.rake
+++ /dev/null
@@ -1,42 +0,0 @@
-namespace :gitlab do
- namespace :wiki do
-
- # This task will migrate all of the existing Wiki
- # content stored in your database into the new
- # Gollum Wiki system. A new repository named
- # namespace/project.wiki.git will be created for
- # each project that currently has Wiki pages in
- # the database.
- #
- # Notes:
- # * The existing Wiki content will remain in your
- # database in-tact.
- desc "GITLAB | Migrate Wiki content from database to Gollum repositories."
- task :migrate => :environment do
- wiki_migrator = WikiToGollumMigrator.new
- wiki_migrator.migrate!
- end
-
- # This task will destroy all of the Wiki repos
- # that the Wiki migration task created. Run this
- # to clean up your environment if you experienced
- # problems during the original migration. After
- # executing this task, you can attempt the original
- # migration again.
- #
- # Notes:
- # * This will not affect Wikis that have been created
- # as Gollum Wikis only. It will only remove the wikis
- # for the repositories that have old Wiki data in the
- # dataabase.
- # * If you have any repositories already named
- # namespace/project.wiki that you do not wish
- # to be removed you may want to perform a manual
- # cleanup instead.
- desc "GITLAB | Remove the Wiki repositories created by the `gitlab:wiki:migrate` task."
- task :rollback => :environment do
- wiki_migrator = WikiToGollumMigrator.new
- wiki_migrator.rollback!
- end
- end
-end