mirror of
https://github.com/EvolutionAPI/evolution-api.git
synced 2025-07-13 07:04:50 -06:00

- Introduced `splitMessages` and `timePerChar` fields in the Typebot and TypebotSetting models with default values. - Created a migration script to update the database schema accordingly. - Updated audio message handling to prepend `[audio]` to transcriptions for better clarity in message context.
8 lines
286 B
SQL
8 lines
286 B
SQL
-- AlterTable
|
|
ALTER TABLE "Typebot" ADD COLUMN "splitMessages" BOOLEAN DEFAULT false,
|
|
ADD COLUMN "timePerChar" INTEGER DEFAULT 50;
|
|
|
|
-- AlterTable
|
|
ALTER TABLE "TypebotSetting" ADD COLUMN "splitMessages" BOOLEAN DEFAULT false,
|
|
ADD COLUMN "timePerChar" INTEGER DEFAULT 50;
|