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

20200729151021_add_after_expiry_notification_delivered_to_personal_access_tokens.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 001436b72853766f78a2b998d835b925f0a3be28 (plain)
1
2
3
4
5
6
7
8
9
10
11
# frozen_string_literal: true

class AddAfterExpiryNotificationDeliveredToPersonalAccessTokens < ActiveRecord::Migration[6.0]
  DOWNTIME = false

  disable_ddl_transaction!

  def change
    add_column :personal_access_tokens, :after_expiry_notification_delivered, :boolean, null: false, default: false
  end
end