about summary refs log tree commit diff
path: root/db/post_migrate/20210308133107_remove_subscription_expires_at_from_accounts.rb
blob: 511104cef368aba6f40d29748ba51e2d2bc52313 (plain) (blame)
1
2
3
4
5
6
7
class RemoveSubscriptionExpiresAtFromAccounts < ActiveRecord::Migration[5.2]
  def change
    safety_assured do
      remove_column :accounts, :subscription_expires_at, :datetime, null: true, default: nil, precision: nil
    end
  end
end