8 lines
176 B
Ruby
8 lines
176 B
Ruby
# frozen_string_literal: true
|
|
class DropBalance < ActiveRecord::Migration[6.1]
|
|
def change
|
|
# rubocop:disable Rails/ReversibleMigration
|
|
drop_table(:balances)
|
|
end
|
|
end
|