Files
geo/backend/prisma/ADD_WITH_VAT.sql
2026-02-04 00:11:19 +05:00

6 lines
338 B
SQL
Executable File
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
-- Добавить поле "с НДС / без НДС" в смету.
-- Выполните вручную, если миграция Prisma не применилась:
-- psql -U it -d estimate_assistant -f backend/prisma/ADD_WITH_VAT.sql
ALTER TABLE "Estimate" ADD COLUMN IF NOT EXISTS "withVat" BOOLEAN NOT NULL DEFAULT true;