20210308133107_remove_subscription_expires_at_from_accounts.rb 270 B

123456789
  1. # frozen_string_literal: true
  2. class RemoveSubscriptionExpiresAtFromAccounts < ActiveRecord::Migration[5.2]
  3. def change
  4. safety_assured do
  5. remove_column :accounts, :subscription_expires_at, :datetime, null: true, default: nil, precision: nil
  6. end
  7. end
  8. end