debian-mirror-gitlab/db/migrate/20160823083941_add_column_scopes_to_personal_access_tokens.rb

20 lines
577 B
Ruby
Raw Normal View History

2017-08-17 22:00:37 +05:30
# The default needs to be `[]`, but all existing access tokens need to have `scopes` set to `['api']`.
# It's easier to achieve this by adding the column with the `['api']` default, and then changing the default to
# `[]`.
2019-02-15 15:39:39 +05:30
class AddColumnScopesToPersonalAccessTokens < ActiveRecord::Migration[4.2]
2017-08-17 22:00:37 +05:30
include Gitlab::Database::MigrationHelpers
DOWNTIME = false
disable_ddl_transaction!
def up
add_column_with_default :personal_access_tokens, :scopes, :string, default: ['api'].to_yaml
end
def down
remove_column :personal_access_tokens, :scopes
end
end