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

20191004151428_add_auto_stop_in_to_environments.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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