This commit includes all previously untracked backend files: Domain: - Accounts, Attachments, BankConnections, Customers - FiscalYears, Invoices, JournalEntryDrafts - Orders, Products, UserAccess Commands & Handlers: - Full CQRS command structure for all domains Repositories: - PostgreSQL repositories for all read models - Bank transaction and ledger repositories GraphQL: - Input types, scalars, and types for all entities - Mutations and queries Infrastructure: - Banking integration (Enable Banking client) - File storage, Invoicing, Reporting, SAF-T export - Database migrations (003-029) Tests: - Integration tests for GraphQL endpoints - Domain tests - Invoicing and reporting tests Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
20 lines
762 B
SQL
20 lines
762 B
SQL
-- Migration: 008_FixJournalEntryDraftColumns
|
|
-- Description: Fix column types for journal_entry_draft_read_models
|
|
-- - Change lines from jsonb to text (matches C# string serialization)
|
|
-- - Rename date to document_date if not already done
|
|
|
|
-- Fix lines column type (EventFlow may have created it as jsonb)
|
|
ALTER TABLE journal_entry_draft_read_models
|
|
ALTER COLUMN lines TYPE text USING lines::text;
|
|
|
|
-- Ensure document_date column exists (rename from date if needed)
|
|
DO $$
|
|
BEGIN
|
|
IF EXISTS (
|
|
SELECT 1 FROM information_schema.columns
|
|
WHERE table_name = 'journal_entry_draft_read_models'
|
|
AND column_name = 'date'
|
|
) THEN
|
|
ALTER TABLE journal_entry_draft_read_models RENAME COLUMN date TO document_date;
|
|
END IF;
|
|
END $$;
|