summaryrefslogtreecommitdiffstats
path: root/db/post_migrate/20210507001928_remove_hub_url_from_accounts.rb
diff options
context:
space:
mode:
Diffstat (limited to 'db/post_migrate/20210507001928_remove_hub_url_from_accounts.rb')
-rw-r--r--db/post_migrate/20210507001928_remove_hub_url_from_accounts.rb12
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 00000000000..83a1f5fcf3a
--- /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