Files
ubicloud/migrate/20250207_add_free_quota_amount.rb
Junhao Li a1d9b84cd8 Add free quota amount column to billing record
Add a new column to record free quota usage. The original amount will
start to accrue after the free quota limit is reached.
2025-02-07 17:31:52 -05:00

10 lines
188 B
Ruby

# frozen_string_literal: true
Sequel.migration do
change do
alter_table(:billing_record) do
add_column :free_quota_amount, :numeric, null: false, default: 0
end
end
end