6 lines
137 B
Ruby
6 lines
137 B
Ruby
class AddNetAmountToEarnings < ActiveRecord::Migration[8.0]
|
|
def change
|
|
add_column :earnings, :net_amount_cents, :integer
|
|
end
|
|
end
|