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 CreatePopupsTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
Schema::create('popups', function (Blueprint $table) {
$table->id();
$table->string('code')->unique();
$table->string('name')->nullable();
$table->string('image')->nullable();
$table->text('body')->nullable();
$table->string('url')->nullable();
$table->bigInteger('position')->default(0);
$table->timestamps();
});
}
* Reverse the migrations.
public function down()
Schema::dropIfExists('popups');