調整疾病類別項目

This commit is contained in:
ericli1018
2025-07-03 10:20:38 +08:00
parent ce4c781d02
commit 3a0bee4d58
13 changed files with 101 additions and 4 deletions

View File

@ -14,6 +14,7 @@ class CreateEventMetabolismsTable extends Migration
{
Schema::create('event_metabolisms', function (Blueprint $table) {
$table->bigIncrements('id');
$table->integer('disease_type');
$table->text('hospital_name');
$table->text('name');
$table->text('twid');

View File

@ -14,6 +14,7 @@ class CreateEventHealthAllowancesTable extends Migration
{
Schema::create('event_health_allowances', function (Blueprint $table) {
$table->bigIncrements('id');
$table->integer('disease_type');
$table->text('hospital_name');
$table->text('name');
$table->text('twid');