diff options
Diffstat (limited to 'sql')
| -rw-r--r-- | sql/dawn.sql | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/sql/dawn.sql b/sql/dawn.sql index 079cb045..8fb4423c 100644 --- a/sql/dawn.sql +++ b/sql/dawn.sql @@ -3818,4 +3818,16 @@ AS SELECT tranche_risk.date, knowledge_date timestamp NULL, ticker_ocs_code text null, CONSTRAINT isosel_accrued_pk PRIMARY KEY (period_end_date, "row") -);
\ No newline at end of file +); + + +CREATE TABLE custodian_wires( + date date NOT NULL, + fund fund NOT NULL, + entry_date date, + value_date date, + pay_date date, + currency currency, + amount float8 NOT NULL, + wire_details text, + unique_ref text PRIMARY KEY);
\ No newline at end of file |
