aboutsummaryrefslogtreecommitdiffstats
path: root/python/Dawn/models.py
diff options
context:
space:
mode:
Diffstat (limited to 'python/Dawn/models.py')
-rw-r--r--python/Dawn/models.py11
1 files changed, 0 insertions, 11 deletions
diff --git a/python/Dawn/models.py b/python/Dawn/models.py
index 8ec88c09..b9eca2e6 100644
--- a/python/Dawn/models.py
+++ b/python/Dawn/models.py
@@ -624,19 +624,8 @@ class CapFloorDeal(db.Model):
swap_type = db.Column(CAPFLOOR_TYPE, nullable=False)
reset_lag = db.Column(db.Integer, default=2)
trade_confirm = db.Column(db.String, info={"form_field_class": FileField})
- termination_date = db.Column(db.Date)
- termination_fee = db.Column(db.Float)
- termination_amount = db.Column(db.Float)
- termination_cp = db.Column(
- db.String(12),
- db.ForeignKey("counterparties.code"),
- info={"choices": [(None, "")], "label": "termination counterparty"},
- )
cpty_id = db.Column(db.Text)
counterparty = db.relationship(Counterparties, foreign_keys=[cp_code])
- termination_counterparty = db.relationship(
- Counterparties, foreign_keys=[termination_cp]
- )
class Termination(db.Model):