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;
class AddTableCmsEmailQueues extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
Schema::create('cms_email_queues', function (Blueprint $table) {
$table->increments('id');
$table->dateTime('send_at')->nullable();
$table->string('email_recipient')->nullable();
$table->string('email_from_email')->nullable();
$table->string('email_from_name')->nullable();
$table->string('email_cc_email')->nullable();
$table->string('email_subject')->nullable();
$table->text('email_content')->nullable();
$table->text('email_attachments')->nullable();
$table->boolean('is_sent')->nullable();
$table->timestamps();
});
}
* Reverse the migrations.
public function down()
Schema::drop('cms_email_queues');