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

12 lines
214 B
Ruby
Raw Normal View History

2019-01-03 12:48:30 +05:30
class AddCiConfigFileToProject < ActiveRecord::Migration
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