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

10 lines
250 B
Ruby

# frozen_string_literal: true
class AddMaxPersonalAccessTokenLifetimeToApplicationSettings < ActiveRecord::Migration[5.2]
DOWNTIME = false
def change
add_column :application_settings, :max_personal_access_token_lifetime, :integer
end
end