Files
aperonight/db/migrate/20250916215119_add_net_amount_to_earnings.rb

6 lines
137 B
Ruby

class AddNetAmountToEarnings < ActiveRecord::Migration[8.0]
def change
add_column :earnings, :net_amount_cents, :integer
end
end