debian-mirror-gitlab/db/migrate/20220502150408_add_slack_integrations_bot_columns.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

12 lines
320 B
Ruby
Raw Normal View History

2022-07-16 23:28:13 +05:30
# frozen_string_literal: true
class AddSlackIntegrationsBotColumns < Gitlab::Database::Migration[2.0]
def change
change_table :slack_integrations do |t|
t.column :bot_user_id, :text
t.column :encrypted_bot_access_token, :binary
t.column :encrypted_bot_access_token_iv, :binary
end
end
end