debian-mirror-gitlab/db/migrate/20160804142904_add_ci_config_file_to_project.rb
2019-02-15 15:39:39 +05:30

12 lines
219 B
Ruby

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