Some checks failed
build-and-push / detect-changes (push) Successful in 6s
build-and-push / build (catering-services) (push) Failing after 5s
build-and-push / build (companies) (push) Failing after 6s
build-and-push / build (cron) (push) Failing after 5s
build-and-push / build (customers) (push) Failing after 5s
build-and-push / build (developers) (push) Failing after 5s
build-and-push / build (employees) (push) Successful in 11s
build-and-push / build (fitness-trainers) (push) Successful in 11s
build-and-push / build (graphic-designers) (push) Successful in 12s
build-and-push / build (gateway) (push) Successful in 25s
build-and-push / build (jobs) (push) Failing after 18s
build-and-push / build (leads) (push) Failing after 19s
build-and-push / build (makeup-artists) (push) Failing after 4s
build-and-push / build (payments) (push) Failing after 4s
build-and-push / build (photographers) (push) Failing after 18s
build-and-push / build (job-seekers) (push) Failing after 1m30s
build-and-push / build (tutors) (push) Failing after 5s
build-and-push / build (social-media-managers) (push) Failing after 20s
build-and-push / build (ugc-content-creators) (push) Failing after 5s
build-and-push / build (users) (push) Failing after 6s
build-and-push / build (video-editors) (push) Failing after 5s
14 lines
412 B
PL/PgSQL
14 lines
412 B
PL/PgSQL
-- Phase 4: Add language/voice/tokens columns to ai_conversations.
|
|
-- These are non-destructive ALTERs with defaults so they are safe to run on
|
|
-- an existing database.
|
|
|
|
BEGIN;
|
|
|
|
ALTER TABLE ai_conversations
|
|
DROP COLUMN IF EXISTS language,
|
|
DROP COLUMN IF EXISTS has_voice,
|
|
DROP COLUMN IF EXISTS voice_duration_ms,
|
|
DROP COLUMN IF EXISTS tokens_estimate,
|
|
DROP COLUMN IF EXISTS summary;
|
|
|
|
COMMIT;
|