aboutsummaryrefslogtreecommitdiffstats
path: root/sql
diff options
context:
space:
mode:
Diffstat (limited to 'sql')
-rw-r--r--sql/dawn.sql7
1 files changed, 4 insertions, 3 deletions
diff --git a/sql/dawn.sql b/sql/dawn.sql
index 7f0029aa..e67d6260 100644
--- a/sql/dawn.sql
+++ b/sql/dawn.sql
@@ -3171,10 +3171,10 @@ CREATE TYPE "instrument_type" AS ENUM (
CREATE TYPE "id_source" AS ENUM (
- "RED", "USERID");
+ 'RED', 'USERID');
CREATE TYPE "serenitas_product" AS ENUM(
- "tranche", "cdx_swaption", "ir_swaption", "irs", "trs"
+ 'tranche', 'cdx_swaption', 'ir_swaption', 'irs', 'trs'
)
CREATE TABLE public.citco_instruments (
@@ -3191,5 +3191,6 @@ CREATE TABLE public.citco_instruments (
detach int8 NULL,
strike float NULL,
expiration date NULL,
- callput bool NULL
+ callput bool NULL,
+ commited bool NOT NULL default False
); \ No newline at end of file