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
path: root/db
diff options
context:
space:
mode:
authorGrzegorz Bizon <grzesiek.bizon@gmail.com>2016-02-05 10:22:29 +0300
committerGrzegorz Bizon <grzesiek.bizon@gmail.com>2016-02-19 19:24:59 +0300
commit293999cabbceab43ca82c5178285d52dfb55cb08 (patch)
treeefa39c89eb4288663452271e7ee4f2a02ec64343 /db
parentec5c3c029ce220f5a1c0fd10d0d3bf17951a07c9 (diff)
Fix name of build erasable, remove superfluous method from it
Diffstat (limited to 'db')
-rw-r--r--db/migrate/20160202091601_add_erasable_to_ci_build.rb (renamed from db/migrate/20160202091601_add_eraseable_to_ci_build.rb)2
1 files changed, 1 insertions, 1 deletions
diff --git a/db/migrate/20160202091601_add_eraseable_to_ci_build.rb b/db/migrate/20160202091601_add_erasable_to_ci_build.rb
index 3db7180c1ae..f9912f2274e 100644
--- a/db/migrate/20160202091601_add_eraseable_to_ci_build.rb
+++ b/db/migrate/20160202091601_add_erasable_to_ci_build.rb
@@ -1,4 +1,4 @@
-class AddEraseableToCiBuild < ActiveRecord::Migration
+class AddErasableToCiBuild < ActiveRecord::Migration
def change
add_reference :ci_builds, :erased_by, references: :users, index: true
add_column :ci_builds, :erased_at, :datetime