mirror of
https://github.com/GSA/notifications-api.git
synced 2026-08-17 04:58:50 -04:00
Add postage column to ft_billing
Added a new varchar column, postage, to ft_billing. This is nullable and not part of the composite primary key for now, but this will change later.
This commit is contained in:
@@ -1811,6 +1811,7 @@ class FactBilling(db.Model):
|
||||
rate_multiplier = db.Column(db.Integer(), nullable=False, primary_key=True)
|
||||
international = db.Column(db.Boolean, nullable=False, primary_key=True)
|
||||
rate = db.Column(db.Numeric(), nullable=False, primary_key=True)
|
||||
postage = db.Column(db.String)
|
||||
billable_units = db.Column(db.Integer(), nullable=True)
|
||||
notifications_sent = db.Column(db.Integer(), nullable=True)
|
||||
created_at = db.Column(db.DateTime, nullable=False, default=datetime.datetime.utcnow)
|
||||
|
||||
Reference in New Issue
Block a user