aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--sql/dawn.sql9
1 files changed, 9 insertions, 0 deletions
diff --git a/sql/dawn.sql b/sql/dawn.sql
index d33b2ae4..9c9fc56a 100644
--- a/sql/dawn.sql
+++ b/sql/dawn.sql
@@ -3285,4 +3285,13 @@ CREATE TABLE citco_submission(
identifier text not null,
serenitas_id text not null,
submit_date timestamptz NOT NULL DEFAULT now()
+);
+
+
+CREATE TABLE citco_trade_submission(
+ serenitas_id text not null,
+ action action not null,
+ identifier text null,
+ committed bool not null default False,
+ submit_date timestamptz NOT NULL DEFAULT now()
); \ No newline at end of file