for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class CreateTestModelsTable extends Migration
{
public function up()
Schema::create('test_models', function (Blueprint $table){
$table->increments('id');
$table->string('name');
$table->text('description');
$table->text('properties');
$table->timestamps();
});
}