20210308133107_remove_subscription_expires_at_from_accounts.rb 223 B

1234567
  1. class RemoveSubscriptionExpiresAtFromAccounts < ActiveRecord::Migration[5.0]
  2. def change
  3. safety_assured do
  4. remove_column :accounts, :subscription_expires_at, :datetime, null: true, default: nil
  5. end
  6. end
  7. end