9026 Add legal_entity column to orders table + Add legal_entity column to markets table (#550)

This commit is contained in:
lucianfilote-photowall
2026-04-14 13:23:50 +02:00
committed by GitHub
parent 3ba874125e
commit 0487708e3c
+8
View File
@@ -0,0 +1,8 @@
DROP TYPE IF EXISTS legal_entity;
CREATE TYPE legal_entity AS ENUM (
'nordic_e_trade_ab',
'photowall_inc'
);
ALTER TABLE orders ADD COLUMN legal_entity legal_entity NOT NULL DEFAULT 'nordic_e_trade_ab';
ALTER TABLE markets ADD COLUMN legal_entity legal_entity NOT NULL DEFAULT 'nordic_e_trade_ab';