Migration configuration
Table name
Table operation
New field
Table fields
You have no existing fields yet. Please add them above 😎
<?php
use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class CreateTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('', function (Blueprint $table) {
// Please add your fields
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::drop('');
}
}