Support the ongoing development of Laravel.io →
Database Eloquent Installation
Last updated 1 year ago.
0

Considering that contrary to Doctrine, Eloquent does not define data structure through model description but from migrations, I considered another option: I’m considering both deflecting the migrations by replacing the Schema Facade by another and do a post-analysis of the models retrieved through the migrations to get their relationships.

I have still no idea where to start from and maybe you’ll think this is madness, but I’d like to get your advices about it.

0

So far, here is the raw plan:

  • create a CustomSchema class extending Facade and providing an object of type CustomBuilder extending Illuminate\Database\Schema\Builder and implementing the business logic for the creation of an array of models and fields
  • create some kind of action class that will :
    • switch Schema with CustomSchema before calling the execution of the migrations;
    • browse all retrieved model classes’ methods returning an object of type Illuminate\Database\Eloquent\Relations\Relation, and note them as relationships
    • store the resulting array of data

The action would be callable either from a console command or after execution of a regular migration

What do you think of it? How could I achieve that?

Last updated 7 years ago.
0

When I posted this scenario on larachat, I was finally responded that it was too complicated and that it ignored the fact that a model name could be different of the table name. So I was suggested to take inspiration from barryvdh/laravel-ide-helper to analyze model files directly. To be continued, probably.

0

Also needed to know how to do this. for a moment i thought about parsing the migration file but your way sounds more flexible. keep on updating us

0

Not sure how far you got but there are a few commands to help you out but I think you will probably be best off doing it in raw querys.

If you open up tinker you can play around with these...

\Schema::getColumnListing('tableName');

This will return the column name's itself using the default connection found on your projects. However if you do something like

\Db::select(\DB::raw('SHOW COLUMNS FROM tableName'));

You will get something way better.. however, then you run into things like MySQL vs Postgres, etc. For example I used the describe method on a package I wrote to help make models a little bit easier, but describe doesn't exists in postgres (https://github.com/laracademy/generators/blob/master/src/Comma...) just something to keep in mind

0

Sign in to participate in this thread!

Eventy

Your banner here too?

sesman sesman Joined 20 Mar 2015

Moderators

We'd like to thank these amazing companies for supporting us

Your logo here?

Laravel.io

The Laravel portal for problem solving, knowledge sharing and community building.

© 2024 Laravel.io - All rights reserved.