Initial commit

This commit is contained in:
Kwesi Banson Jnr
2026-07-17 09:58:21 +00:00
commit b71f5c7553
8555 changed files with 725382 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
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();
});