This commit is contained in:
kevin
2023-06-16 10:26:56 +07:00
parent 3a8a7438ba
commit b05f052848
4 changed files with 92 additions and 1 deletions

View File

@@ -64,6 +64,7 @@ return new class extends Migration
$table->string('currency')->nullable();
$table->float('max_surgery_reinstatement_days')->nullable();
$table->float('max_surgery_periode_days')->nullable();
$table->timestamps();
$table->softDeletes();

View File

@@ -0,0 +1,32 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::table(' plans', function (Blueprint $table) {
$table->string('limit_telecon')->nullable();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::table('plans', function (Blueprint $table) {
$table->dropColumn('limit_telecon');
});
}
};