debian-mirror-gitlab/db/post_migrate/20220418180958_remove_integrations_properties.rb

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

10 lines
204 B
Ruby
Raw Normal View History

2022-07-23 23:45:48 +05:30
# frozen_string_literal: true
class RemoveIntegrationsProperties < Gitlab::Database::Migration[2.0]
disable_ddl_transaction!
def change
remove_column :integrations, :properties, :text
end
end