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 CreateBlocksTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
Schema::create('blocks', function (Blueprint $table) {
$table->id();
$table->string('code')->unique();
$table->string('name')->unique();
$table->string('image')->nullable();
$table->string('page')->nullable();
$table->string('location');
$table->bigInteger('position')->default(1);
$table->longText('body')->nullable();
$table->boolean('active')->default(1);
$table->timestamps();
});
}
* Reverse the migrations.
public function down()
Schema::dropIfExists('blocks');