fix perubatan
This commit is contained in:
@@ -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');
|
||||
// }
|
||||
}
|
||||
Reference in New Issue
Block a user