for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class CreateStatesTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
Schema::create('states', function (Blueprint $table) {
$table->increments('id');
$table->string('title');
$table->string('letter');
$table->integer('iso');
$table->string('slug');
$table->integer('population');
});
}
* Reverse the migrations.
public function down()
Schema::dropIfExists('states');