KI-AGENT: NAT Einstellungen für Telekom-Trunk ergänzen
This commit is contained in:
3
backend/db/migrations/0046_telephony_trunk_nat.sql
Normal file
3
backend/db/migrations/0046_telephony_trunk_nat.sql
Normal file
@@ -0,0 +1,3 @@
|
||||
ALTER TABLE "telephony_trunks" ADD COLUMN IF NOT EXISTS "external_signaling_address" text;
|
||||
ALTER TABLE "telephony_trunks" ADD COLUMN IF NOT EXISTS "external_media_address" text;
|
||||
ALTER TABLE "telephony_trunks" ADD COLUMN IF NOT EXISTS "local_networks" text;
|
||||
@@ -323,6 +323,13 @@
|
||||
"when": 1780164000000,
|
||||
"tag": "0045_telephony_trunks",
|
||||
"breakpoints": true
|
||||
},
|
||||
{
|
||||
"idx": 46,
|
||||
"version": "7",
|
||||
"when": 1780167600000,
|
||||
"tag": "0046_telephony_trunk_nat",
|
||||
"breakpoints": true
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
@@ -30,6 +30,9 @@ export const telephonyTrunks = pgTable(
|
||||
callerId: text("caller_id"),
|
||||
inboundExtension: text("inbound_extension").notNull().default("1001"),
|
||||
outboundPrefix: text("outbound_prefix").notNull().default("0"),
|
||||
externalSignalingAddress: text("external_signaling_address"),
|
||||
externalMediaAddress: text("external_media_address"),
|
||||
localNetworks: text("local_networks"),
|
||||
|
||||
createdAt: timestamp("created_at", { withTimezone: true })
|
||||
.notNull()
|
||||
|
||||
Reference in New Issue
Block a user