summaryrefslogtreecommitdiffstats
path: root/db/post_migrate/20210308133107_remove_subscription_expires_at_from_accounts.rb
blob: f95e96297e5911280b75509461314820c2ebb493 (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

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