diff options
Diffstat (limited to 'crates/configuration/migrations/20250812031141_routing.sql')
-rw-r--r-- | crates/configuration/migrations/20250812031141_routing.sql | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/crates/configuration/migrations/20250812031141_routing.sql b/crates/configuration/migrations/20250812031141_routing.sql new file mode 100644 index 0000000..f9bacbc --- /dev/null +++ b/crates/configuration/migrations/20250812031141_routing.sql @@ -0,0 +1,6 @@ +create table routing ( + id uuid primary key, + configuration jsonb not null +); + +create index idx_active_routing on routing using gin ((configuration->'active')); |