From 5d1d05717ec58a685bba0b6393ad934904cba077 Mon Sep 17 00:00:00 2001 From: nurafrinaalimi16 Date: Mon, 8 Apr 2024 15:09:39 +0800 Subject: [PATCH] change tac duration --- config/onewaysms.php | 2 +- ...8_092054_add_no_calon_to_nominee_table.php | 35 +++++++++++++++++++ 2 files changed, 36 insertions(+), 1 deletion(-) create mode 100644 database/migrations/2024_04_08_092054_add_no_calon_to_nominee_table.php diff --git a/config/onewaysms.php b/config/onewaysms.php index 0b908a1..58d7008 100644 --- a/config/onewaysms.php +++ b/config/onewaysms.php @@ -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 ]; ?> \ No newline at end of file diff --git a/database/migrations/2024_04_08_092054_add_no_calon_to_nominee_table.php b/database/migrations/2024_04_08_092054_add_no_calon_to_nominee_table.php new file mode 100644 index 0000000..0f52d87 --- /dev/null +++ b/database/migrations/2024_04_08_092054_add_no_calon_to_nominee_table.php @@ -0,0 +1,35 @@ +string('no_calon', 60)->nullable(); + + }); + } + + /** + * Reverse the migrations. + * + * @return void + */ + public function down() + { + Schema::table('nominee', function (Blueprint $table) { + // + $table->dropColumn('no_calon'); + }); + } +}