Automatically creates database based on
few PHP documentation comments.
/**
* Class Example
*
* @db===
* @property string $avatar_url
* @property int $id #increments
* @db===
**
* @package App
*/
class Example implements AutogeneratedDBFields
{
Well, we can, and it's not hard, but I don't have time for that yet.
If you want to help, you just need to make an assembler for that, just see how
src/LaravelModelAssembler.php works and you can make a LaravelMigrationAssembler.php
or something that assembles migrations instead of the database.
See docs/Architecture.md for how it is architected.