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

20210807102004_add_starts_at_to_dast_profile_schedules.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4eea5fd7e8cc5a61c7a1d1527f8e2886afc62675 (plain)
1
2
3
4
5
6
7
# frozen_string_literal: true

class AddStartsAtToDastProfileSchedules < ActiveRecord::Migration[6.1]
  def change
    add_column :dast_profile_schedules, :starts_at, :datetime_with_timezone, null: false, default: -> { 'NOW()' }
  end
end