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/migrate | |
parent | 9f7e5e45df9b7d99b97e40d1c08250925a408875 (diff) | |
download | gitlab-ce-9f5ac179d1ca4819006c66ae385ba7153f6c7e4f.tar.gz |
Rename ci_config_file to ci_config_path
Diffstat (limited to 'db/migrate')
-rw-r--r-- | db/migrate/20160804142904_add_ci_config_file_to_project.rb | 4 |
1 files changed, 2 insertions, 2 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 |