REVIEW: 3 Tools to Generate Laravel Migrations from Existing Database

Recently I've found a few interesting tools that help generate Laravel migrations automatically from your already existing database schema. In theory it looks very cool, but we decided to test them - I asked a colleague to actually try them all out with real demo-projects. How do they generate filenames and field types? Additional rules? Foreign keys? Do they actually work? Let's take a look.

Presenting to you... contestants!

Let's start with the introduction of the tools:
  1. Laravel Migration Exporter for Sequel Pro - A bundle for Sequel Pro that lets you generate Laravel migration files from existing tables. Written in PHP language.
  2. Xethron Laravel Migrations Generator - Laravel artisan-command tool, available as Laravel package
  3. MySQL Workbench Export Laravel 5 Migrations Plugin - plugin for a popular software MySQL Workbench, written in Python language
Notice: After testing, it appears that Workbench plugin is an almost identical clone of Sequel Pro plugin, just written in Python language, so we didn't review it. In reality, we have two contestants - Sequel Pro Bundle and Laravel Package. As a testing project, we decided to take our own Larancer - freelance management project which has a dozen of tables, foreign keys and various field types. Our test method was simple:
  1. Run migration files on fresh DB
  2. Use the tool to generate migrations from DB
  3. Run new migration files without any changes - do they work?
  4. Analyze the differences between previous migrations and new generated ones
Also, while testing, we tried to check these things:
  1. Correct field types assigned
  2. Nullable assigned correctly
  3. Timestamps work well
  4. Foreign keys work well
  5. Decimal fields work well

Experience with Sequel Pro bundle

Here's how it works: sequel pro migrations And the result of that operation is this list of files: sequel pro bundle results Looks good so far, right? Ok, let's try to run the migrations! sequel pro bundle migrate Unfortunately, fail :( The problem and the reason is the order of foreign keys created in the wrong order. Basically, after generating the migrations, you have to manually copy-paste foreign keys in correct files, and then it works well. Also, we've found these differences in generated migrations, compared to the original:
  • integer()->unsigned() becomes unsignedInteger()
  • onUpdate()/onDelete() foreign keys receive RESTRICT mode if no mode provided in original migrations
  • Indexes are assigned names which didn't exist in original. Also indexes are created separately with separate code lines and not within the same field creation code line
  • All string/text columns get length parameter, even if it's a default one
All of those actually are not bad things, just differences and I guess it's normal. Now, let's look at the other contestant.

Experience with Xethron Laravel Package

Here are a few screenshots of Laravel package to generate migrations. We run the command aaaand.. screen-shot-2016-11-29-at-8-54-57-pm Ok, some questions, let's proceed. xethron migrations And finally, we have the result. Fingers crossed... xethron migrations results Ok, migrations generated successfully. First win. Now let's try to run them: xethron migrations Success! No, seriously, guys - it worked! Now, what else we've noticed about this package:
  • There is a functionality to ignore some tables if you want
  • There's no way (or we didn't find) to specify the location of the migrations so it stores everything in the same /database/migrations folder
  • Foreign key migrations are put in separate files after all the tables migrations
  • As the Sequel Pro bundle above, the package adds RESTRICT on foreign keys and generates names for indexes which didn't exist in the original migrations
Again, those are minor things that you could even call features of the package. But in general, this one is a better option.
So, the final ceremony. Winner of the battle: XETHRON MIGRATIONS GENERATOR! But you can still also use a runner-up Sequel Pro bundle, with some manual tweaks it will do the job. Have fun generating migrations! If you have any personal experience with these tools or similar tasks, shout in the comments.

No comments or questions yet...

Like our articles?

Become a Premium Member for $129/year or $29/month
What else you will get:
  • 58 courses (1056 lessons, total 44 h 09 min)
  • 78 long-form tutorials (one new every week)
  • access to project repositories
  • access to private Discord

Recent Premium Tutorials