Skip to content

Instantly share code, notes, and snippets.

@muhajirinlpu
Created August 12, 2023 15:57
Show Gist options
  • Save muhajirinlpu/a77f0f7e0634d954e047c6d61e0d0bdb to your computer and use it in GitHub Desktop.
Save muhajirinlpu/a77f0f7e0634d954e047c6d61e0d0bdb to your computer and use it in GitHub Desktop.
get foreign keys list from migrations
<?php
$doctrineTable = Schema::getConnection()
->getDoctrineSchemaManager()
->introspectTable('presence_leave_allocations');
$foreignKeys = $doctrineTable->getForeignKeys();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment