Migrate "pretend" - view actual SQL queries before you run them

Laravel has convenient database migrations mechanism, which allows us to track database changes and easily roll them back if needed. But what is hiding behind the scenes? What if we need to know actual SQL queries that have been generated during the migration? Or another scenario - what if we want to check the SQLs before they are actually run? There's a trick for both of it. Artisan command migrate comes with a neat option --pretend. All it does is generating SQLs and showing them for you in Terminal or Command line. Let's take a look at simple migration example:
class CreateTestTable extends Migration {

    /**
     * Run the migrations.
     *
     * @return void
     */
    public function up()
    {
        Schema::create('tests', function (Blueprint $table) {
            $table->increments('id');
            $table->string('title');
            $table->timestamps();
        });
    }
And now we run it with command php artisan migrate --pretend. Here's the result: 0202_laraveldaily_pretend_01 Not really pretty, but you can see the SQL statement here. And let's take it a step further and add another migration, really similar:
class CreateTest2Table extends Migration {

    /**
     * Run the migrations.
     *
     * @return void
     */
    public function up()
    {
        Schema::create('tests2', function (Blueprint $table) {
            $table->increments('id');
            $table->string('title2');
            $table->timestamps();
        });
    }
Same command - here's the result, it shows both commands one after another: 0202_laraveldaily_pretend_02 Simple, but useful trick. Do you know some more tricks with migrations? Let me know 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:
  • 59 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