Skip to content

Instantly share code, notes, and snippets.

@mykeels
Created April 17, 2018 09:29
Show Gist options
  • Save mykeels/08bc6aa2113623e35588169e39d69136 to your computer and use it in GitHub Desktop.
Save mykeels/08bc6aa2113623e35588169e39d69136 to your computer and use it in GitHub Desktop.
A sample migration php class generated by Laravel
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class SampleMigration extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
//
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
//
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment