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.py9
1 files changed, 8 insertions, 1 deletions
diff --git a/python/Dawn/models.py b/python/Dawn/models.py
index deebf0d9..b246f44c 100644
--- a/python/Dawn/models.py
+++ b/python/Dawn/models.py
@@ -570,7 +570,14 @@ class SpotDeal(db.Model):
cp_code = db.Column(
db.String(12),
db.ForeignKey("counterparties.code"),
- info={"choices": [("IBKRNY", "Interactive Brokers")], "label": "counterparty"},
+ info={
+ "choices": [
+ ("IBKRNY", "Interactive Brokers"),
+ ("BAMSNY", "BofA"),
+ ("WELFEI", "Wells Fargo"),
+ ],
+ "label": "counterparty",
+ },
nullable=False,
)
trade_date = db.Column(db.Date, nullable=False, default=datetime.date.today)