We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
To get the model class name from a schema:
$class = $schema->getModelClass();
To get the table name of a schema:
$t = $schema->getTable();
To iterate the column objects, you may call getColumns, which returns the column objects in an associative array:
getColumns
foreach( $schema->getColumns() as $n => $c ) { echo $c->name; // column name }
There was an error while loading. Please reload this page.