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:
authorLin Jen-Shin <godfat@godfat.org>2017-07-05 15:11:01 +0300
committerLin Jen-Shin <godfat@godfat.org>2017-07-05 15:11:01 +0300
commit9f5ac179d1ca4819006c66ae385ba7153f6c7e4f (patch)
tree8dafab8a2f87092dd57c26fbbb70b131d98d9078 /db
parent9f7e5e45df9b7d99b97e40d1c08250925a408875 (diff)
Rename ci_config_file to ci_config_path
Diffstat (limited to 'db')
-rw-r--r--db/migrate/20160804142904_add_ci_config_file_to_project.rb4
-rw-r--r--db/schema.rb2
2 files changed, 3 insertions, 3 deletions
diff --git a/db/migrate/20160804142904_add_ci_config_file_to_project.rb b/db/migrate/20160804142904_add_ci_config_file_to_project.rb
index 674a22ae8f3..341ae555c1b 100644
--- a/db/migrate/20160804142904_add_ci_config_file_to_project.rb
+++ b/db/migrate/20160804142904_add_ci_config_file_to_project.rb
@@ -2,10 +2,10 @@ class AddCiConfigFileToProject < ActiveRecord::Migration
DOWNTIME = false
def change
- add_column :projects, :ci_config_file, :string
+ add_column :projects, :ci_config_path, :string
end
def down
- remove_column :projects, :ci_config_file
+ remove_column :projects, :ci_config_path
end
end
diff --git a/db/schema.rb b/db/schema.rb
index 1c8f0ebfb9b..71555b21241 100644
--- a/db/schema.rb
+++ b/db/schema.rb
@@ -1085,7 +1085,7 @@ ActiveRecord::Schema.define(version: 20170622162730) do
t.string "import_jid"
t.integer "cached_markdown_version"
t.datetime "last_repository_updated_at"
- t.string "ci_config_file"
+ t.string "ci_config_path"
end
add_index "projects", ["ci_id"], name: "index_projects_on_ci_id", using: :btree