diff options
Diffstat (limited to 'sql')
| -rw-r--r-- | sql/serenitasdb.sql | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/sql/serenitasdb.sql b/sql/serenitasdb.sql index f740c30b..111eaa76 100644 --- a/sql/serenitasdb.sql +++ b/sql/serenitasdb.sql @@ -1233,3 +1233,12 @@ CREATE TABLE rates( CREATE TABLE dtcc_corrections(
dissemination_id bigint,
correction bytea)
+
+CREATE TABLE public.sn_cds_quote_details (
+ id serial4 NOT NULL,
+ quotedate timestamptz NULL,
+ quote_source varchar(4) NULL,
+ msg_id int8 NULL,
+ CONSTRAINT sn_cds_quote_details_msg_id_key UNIQUE (msg_id),
+ CONSTRAINT sn_cds_quote_details_pkey PRIMARY KEY (id)
+);
\ No newline at end of file |
