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:
authorKamil Trzcinski <ayufan@ayufan.eu>2015-12-23 21:39:44 +0300
committerKamil Trzcinski <ayufan@ayufan.eu>2015-12-23 21:39:59 +0300
commit89aed37eefd7f52d66466e7ee9795218eb49d92c (patch)
tree64e10d41d1a9de2919c2471c654cbb7b0c0da20b /db/migrate/20151209144329_migrate_ci_web_hooks.rb
parent9f69a0b2294bfcba720dc0ae9e1aadbb6d77205d (diff)
Make migrations reversible
Diffstat (limited to 'db/migrate/20151209144329_migrate_ci_web_hooks.rb')
-rw-r--r--db/migrate/20151209144329_migrate_ci_web_hooks.rb3
1 files changed, 3 insertions, 0 deletions
diff --git a/db/migrate/20151209144329_migrate_ci_web_hooks.rb b/db/migrate/20151209144329_migrate_ci_web_hooks.rb
index 825ba1973ff..d7e196e6763 100644
--- a/db/migrate/20151209144329_migrate_ci_web_hooks.rb
+++ b/db/migrate/20151209144329_migrate_ci_web_hooks.rb
@@ -10,4 +10,7 @@ class MigrateCiWebHooks < ActiveRecord::Migration
'JOIN projects ON ci_projects.gitlab_id = projects.id'
)
end
+
+ def down
+ end
end