You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
451 B
13 lines
451 B
# frozen_string_literal: true
|
|
|
|
class RemoveHubURLFromAccounts < ActiveRecord::Migration[5.2]
|
|
def change
|
|
safety_assured do
|
|
remove_column :accounts, :secret, :string, null: false, default: ''
|
|
remove_column :accounts, :remote_url, :string, null: false, default: ''
|
|
remove_column :accounts, :salmon_url, :string, null: false, default: ''
|
|
remove_column :accounts, :hub_url, :string, null: false, default: ''
|
|
end
|
|
end
|
|
end
|