fix perubatan

This commit is contained in:
Hafifie PKB
2024-11-06 19:44:08 +08:00
parent b507b76673
commit dae6ba55a6
6 changed files with 107 additions and 7 deletions
@@ -0,0 +1,35 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class AddUsersPerubatanasalTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::table('users', function (Blueprint $table){
$isCreatedAt = Schema::hasColumn('users','perubatan_asal');
if (! $isCreatedAt) {
$table->decimal('perubatan_asal', 11, 2);
}
});
}
/**
* Reverse the migrations.
*
* @return void
*/
// public function down()
// {
// Schema::dropIfExists('users');
// }
}