Files
ERP-upgrade/paperless-db-integration.md
Kwesi Banson Jnr b71f5c7553 Initial commit
2026-07-17 09:58:21 +00:00

403 B

Schema::table('mno_partners', function (Blueprint $table) { // Stores the ID of the 'Correspondent' in Paperless $table->unsignedBigInteger('paperless_correspondent_id')->nullable(); });

Schema::table('document_types', function (Blueprint $table) { // Stores the ID of the 'Tag' in Paperless (e.g., 'SLA', 'Contract') $table->unsignedBigInteger('paperless_tag_id')->nullable(); });