## Dokumentation - Entfernt AGENTS.md (redundant zu CLAUDE.md) - Verschoben: 3 Dokumentationen von root → docs/ - Gelöscht: 8 historische Migrations-Pläne aus docs/archive/ - Entfernt: misc/ Ordner komplett (43 Dateien) ## Struktur - Erstellt: database/queries/ für SQL Test-Queries (4 Dateien) - Erstellt: database/schemas/ für Schema-Dokumentation (17 Dateien) - output_keys_mapping/ (8 CSV-Mappings) - migration-diagrams/ (4 Diagramme) ## Code-Qualität - Formatiert: 7 Style-Issues in 74 Dateien mit Laravel Pint - Gefixed: Migration für PostgreSQL/SQLite Kompatibilität - Gefixed: 2 fehlgeschlagene Tests (CSRF + Text-Assertion) ## Tests - Alle 73 Tests bestehen jetzt (100% Success Rate) - AuthenticationTest: CSRF-Token Fix für Logout-Test - CompanySearchTest: Text-Assertion aktualisiert ## Ergebnis - Root ist sauber (nur CLAUDE.md) - Dokumentation strukturiert in docs/ - Database-Dateien organisiert in database/ - Code entspricht Style-Guide - Alle Tests bestehen
18 lines
459 B
SQL
18 lines
459 B
SQL
SELECT * FROM public.test_transaction_llm
|
|
ORDER BY id ASC ;
|
|
|
|
|
|
select * from backend.transactions;
|
|
|
|
Select * from
|
|
backend.transactions as t
|
|
left join backend.transaction_outputs as tout on t.id = tout.transaction_id
|
|
left join backend.prompt_templates as prt on tout.prompt_id = prt.prompt_id
|
|
--where t.id = 2
|
|
order by transaction_id, tout.prompt_id;
|
|
|
|
select * from backend.prompt_templates;
|
|
|
|
Select * from public.companies;
|
|
|
|
select * from public.transactions; |