Merge branch 'main' into glitch-soc/merge-upstream

This commit is contained in:
Claire
2021-03-15 11:26:59 +01:00
26 changed files with 83 additions and 88 deletions

View File

@@ -0,0 +1,7 @@
class RemoveSubscriptionExpiresAtFromAccounts < ActiveRecord::Migration[5.0]
def change
safety_assured do
remove_column :accounts, :subscription_expires_at, :datetime, null: true, default: nil
end
end
end