debian-mirror-gitlab/db/migrate/20191004151428_add_auto_stop_in_to_environments.rb
2020-01-01 13:55:28 +05:30

10 lines
208 B
Ruby

# 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