diff options
author | Lin Jen-Shin <godfat@godfat.org> | 2017-07-05 20:11:01 +0800 |
---|---|---|
committer | Lin Jen-Shin <godfat@godfat.org> | 2017-07-05 20:11:01 +0800 |
commit | 9f5ac179d1ca4819006c66ae385ba7153f6c7e4f (patch) | |
tree | 8dafab8a2f87092dd57c26fbbb70b131d98d9078 /db | |
parent | 9f7e5e45df9b7d99b97e40d1c08250925a408875 (diff) | |
download | gitlab-ce-9f5ac179d1ca4819006c66ae385ba7153f6c7e4f.tar.gz |
Rename ci_config_file to ci_config_path
Diffstat (limited to 'db')
-rw-r--r-- | db/migrate/20160804142904_add_ci_config_file_to_project.rb | 4 | ||||
-rw-r--r-- | db/schema.rb | 2 |
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 |