attendance log

This commit is contained in:
xiaomlove
2023-04-12 01:59:12 +08:00
parent 8e3ace4d83
commit 1ba01b2713
9 changed files with 185 additions and 1 deletions

View File

@@ -0,0 +1,33 @@
<?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('agent_allowed_family', function (Blueprint $table) {
$table->string("comment")->nullable(true)->change();
});
Schema::table('agent_deny_family', function (Blueprint $table) {
$table->string("comment")->nullable(true)->change();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
//
}
};