debian-mirror-gitlab/db/migrate/20160804142904_add_ci_config_file_to_project.rb

12 lines
219 B
Ruby
Raw Normal View History

2019-02-15 15:39:39 +05:30
class AddCiConfigFileToProject < ActiveRecord::Migration[4.2]
2017-09-10 17:25:29 +05:30
DOWNTIME = false
def change
add_column :projects, :ci_config_path, :string
end
def down
remove_column :projects, :ci_config_path
end
end