diff options
| -rw-r--r-- | sql/dawn.sql | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/sql/dawn.sql b/sql/dawn.sql index 9c462284..155cc3c9 100644 --- a/sql/dawn.sql +++ b/sql/dawn.sql @@ -3402,3 +3402,11 @@ CREATE TABLE citco_submission_status( committed bool not null default False, submit_date timestamptz NOT NULL DEFAULT now() ); + + +CREATE table isda_agreement_dates( + fund fund not null, + counterparty text REFERENCES counterparties(code), + agreement_date date not null, + CONSTRAINT isda_agreement_dates_key UNIQUE (fund, counterparty, agreement_date), +)
\ No newline at end of file |
