tambah rekod blast sms

This commit is contained in:
Nur Izzati Zulkifli
2023-11-22 15:38:31 +08:00
parent 3364c6167f
commit 68ee50139e
7 changed files with 177 additions and 17 deletions
@@ -20,6 +20,7 @@ class CreateLogBlastWasap extends Migration
$table->string('notelefon')->nullable();
$table->string('norujukan')->nullable();
$table->string('tempoh')->nullable();
$table->text('status')->nullable();
$table->timestamps();
});
}
@@ -0,0 +1,37 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class LogBlastSms extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('log_blast_sms', function (Blueprint $table) {
$table->id();
$table->string('kodcaw')->nullable();
$table->string('nokp')->nullable();
$table->string('notelefon')->nullable();
$table->string('norujukan')->nullable();
$table->string('tempoh')->nullable();
$table->text('status')->nullable();
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('log_blast_sms');
}
}