7 lignes
223 o
Ruby
7 lignes
223 o
Ruby
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
|