summaryrefslogtreecommitdiff
path: root/db/migrate/20160804142904_add_ci_config_file_to_project.rb
blob: 341ae555c1b95964fd7841f0b597b29165293590 (plain)
1
2
3
4
5
6
7
8
9
10
11
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