summaryrefslogtreecommitdiff
path: root/db/migrate/20170428064307_add_column_delete_error_to_projects.rb
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