summaryrefslogtreecommitdiff
path: root/db/migrate/20210807102004_add_starts_at_to_dast_profile_schedules.rb
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