<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; class CreateEmailTemplatesTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('email_templates', function (Blueprint $table) { $table->id(); $table->uuid('uid'); $table->string('name'); $table->string('slug'); $table->text('subject'); $table->longText('content')->nullable(); $table->boolean('status')->default(true); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('email_templates'); } }