Commit f773d86c by lujunyi

医师类型

parent d112216f
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration
{
/**
* Run the migrations.
*/
public function up(): void
{
Schema::table('doctor', function (Blueprint $table) {
$table->tinyInteger('type')->default(0)->comment('医师类型[2=全部,0=西药,1=中药]');
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::table('doctor', function (Blueprint $table) {
//
});
}
};
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment