Files
gitlabhq/db/migrate/20160804142904_add_ci_config_file_to_project.rb
2017-07-05 20:11:01 +08:00

12 lines
214 B
Ruby

class AddCiConfigFileToProject < ActiveRecord::Migration
DOWNTIME = false
def change
add_column :projects, :ci_config_path, :string
end
def down
remove_column :projects, :ci_config_path
end
end