mysql-workbench-export-laravel-5-migrations
mysql-workbench-export-laravel-5-migrations copied to clipboard
A MySQL Workbench plugin which exports a Model to Laravel 5 Migrations
laravel increaments field is by default unsigned integer in my model I made it Integer (signed) however it's generated in migration as increaments field and it's datatype was unsigned
PSR-2: Coding Style Guide Code MUST use 4 spaces for indenting, not tabs.
Im sorry if i can't get a better description for the title, but i will try to explain this the best i can: When a child entity has another child,...
I installed the module on mysqlworkbench 6.2 mac and 6.3 windows. restarted mysqlworkbench but on my eer diagram i dont see this option in the tools menu. Also when i...
Hi, `->unique()` not added to migration. Using MySQL Workbench 6.3.10 and latest version of plugin
Hi, first of all thanks for this plugin! It's awesome As @martijn94 said in #54 issue, it does not support multiple columns primary key, and obviously it isn't creating the...
Hi, First of all thanks for making this plugin, saved me so much hours already! I found this issue where a PRIMARY key with multiple index collumns would not export...
When you generate the foreign key, you need to add the unsigned () method to the corresponding field. $table->integer('type_member') (When you perform the migration, it fails, because the unsigned method...
I have tables where the primary key is a big integer but it is not auto incrementing. The generated laravel migrations used bigIncrements instead of bigInteger.
This tool works great for normal table and indexing. I find two issues: 1. Unable to generate foreign keys relations on the migration. 2. Also, I reckon, we do not...