summaryrefslogtreecommitdiff
path: root/db/migrate/20191004151428_add_auto_stop_in_to_environments.rb
blob: 860e52d420c802b9c29d578ea84066f8e3cec7e4 (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

class AddAutoStopInToEnvironments < ActiveRecord::Migration[5.2]
  DOWNTIME = false

  def change
    add_column :environments, :auto_stop_at, :datetime_with_timezone
  end
end