aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--sql/dawn.sql7
1 files changed, 7 insertions, 0 deletions
diff --git a/sql/dawn.sql b/sql/dawn.sql
index 320c401c..c5bcc879 100644
--- a/sql/dawn.sql
+++ b/sql/dawn.sql
@@ -2232,3 +2232,10 @@ CREATE TABLE tranche_cashflows(
currency currency,
PRIMARY KEY (date, tranche_id)
);
+
+CREATE TABLE beta_crt(
+ date date NOT NULL,
+ strategy bond_strat NOT NULL ,
+ beta_crt float,
+ PRIMARY KEY (date, strategy)
+);