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 CreatePwaSettingsTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
Schema::create('pwa_settings', function (Blueprint $table) {
$table->bigIncrements('id');
$table->string('domain', 100)->nullable();
$table->string('tenant_id', 36)->nullable();
$table->json('data')->nullable();
$table->boolean('status')->default(0);
$table->timestamps();
});
}
* Reverse the migrations.
public function down()
Schema::dropIfExists('pwa_settings');