update aso

This commit is contained in:
2023-06-19 10:50:29 +07:00
parent b550349835
commit ff89f2ac8b
2 changed files with 41 additions and 4 deletions

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('corporate_benefits', function (Blueprint $table) {
$table->string('limit_free_tc', 255)->nullable()->default(null)->change();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::table('corporate_benefits', function (Blueprint $table) {
$table->integer('limit_free_tc')->change();
});
}
};