change tac duration

This commit is contained in:
nurafrinaalimi16
2024-04-08 15:09:39 +08:00
parent 3be3c35521
commit 5d1d05717e
2 changed files with 36 additions and 1 deletions
+1 -1
View File
@@ -2,7 +2,7 @@
return [
'message' => 'KoPKB : %s is your TAC to log in to your myKoPKB Member account. It will expire in 5 minutes.',
'minutes' => 5
'minutes' => 3
];
?>
@@ -0,0 +1,35 @@
<?php
use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class AddNoCalonToNomineeTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::table('nominee', function (Blueprint $table) {
//
$table->string('no_calon', 60)->nullable();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::table('nominee', function (Blueprint $table) {
//
$table->dropColumn('no_calon');
});
}
}