Add a new column to record free quota usage. The original amount will start to accrue after the free quota limit is reached.
10 lines
188 B
Ruby
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
|