summaryrefslogtreecommitdiff
path: root/db/migrate/20181016141739_add_status_to_deployments.rb
blob: 2cf4501c9e39b748bbf1d0d59198aeced67aad71 (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

class AddStatusToDeployments < ActiveRecord::Migration
  DOWNTIME = false

  def change
    add_column :deployments, :status, :integer, limit: 2
  end
end