diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2021-05-07 19:32:58 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-07 19:32:58 +0200 |
commit | 1294f9ee4fab176bdc3989d667eed43f57baad5a (patch) | |
tree | 9f497d7994f87c97ad65f2bfe1aa62b594fed092 /db/post_migrate | |
parent | d8e0c8a89e1f1dd1c4ce1513deaeb3c85c6e4a42 (diff) |
Remove PubSubHubbub-related columns from accounts table (#16170)
Diffstat (limited to 'db/post_migrate')
-rw-r--r-- | db/post_migrate/20210507001928_remove_hub_url_from_accounts.rb | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/db/post_migrate/20210507001928_remove_hub_url_from_accounts.rb b/db/post_migrate/20210507001928_remove_hub_url_from_accounts.rb new file mode 100644 index 000000000..83a1f5fcf --- /dev/null +++ b/db/post_migrate/20210507001928_remove_hub_url_from_accounts.rb @@ -0,0 +1,12 @@ +# 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 |