Welcome to mirror list, hosted at ThFree Co, Russian Federation.

20170428064307_add_column_delete_error_to_projects.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: bef0373309cfc58e1ef7edbc4c62f78543f26668 (plain)
1
2
3
4
5
6
7
class AddColumnDeleteErrorToProjects < ActiveRecord::Migration[4.2]
  DOWNTIME = false

  def change
    add_column :projects, :delete_error, :text
  end
end