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 CreateRepeatersTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
Schema::create('repeaters', function (Blueprint $table) {
$table->increments('id');
$table->string('slug');
$table->string('url')->nullable()->default(null);
$table->string('page')->nullable()->default('default');
$table->longText('json');
$table->timestamps();
$table->softDeletes();
});
}
* Reverse the migrations.
public function down()
Schema::dropIfExists('repeaters');