for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class CreateMailTemplatesTable extends Migration
{
public function up()
Schema::create('mail_templates', function (Blueprint $table) {
$table->increments('id');
$table->string('mailable');
$table->text('subject')->nullable();
$table->text('template');
$table->string('type')->default('html');
$table->string('markdown_theme')->nullable();
$table->timestamps();
});
}