diff --git a/app/Models/EmailBlastHistory.php b/app/Models/EmailBlastHistory.php new file mode 100644 index 0000000..7ece211 --- /dev/null +++ b/app/Models/EmailBlastHistory.php @@ -0,0 +1,19 @@ +id(); + $table->string('subject'); + $table->text('content'); + $table->integer('recipients_count'); + $table->string('status'); + $table->timestamps(); + }); + } + + public function down() + { + Schema::dropIfExists('email_blast_histories'); + } +}