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

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

class AddExpireAccessTokensToDoorkeeperApplication < Gitlab::Database::Migration[1.0]
  def change
    add_column :oauth_applications, :expire_access_tokens, :boolean, default: false, null: false
  end
end