update company table

This commit is contained in:
2025-11-11 09:11:13 +08:00
parent faefb94d1d
commit 34415a3a7f
2 changed files with 18 additions and 7 deletions
@@ -12,7 +12,7 @@ return new class extends Migration
public function up(): void
{
Schema::create('companies', function (Blueprint $table) {
$table->bigIncrements('id');
$table->bigInteger('id')->primary()->comment('公司ID(来自远程)');
$table->string('name')->unique()->comment('公司名 英文');
$table->string('label')->nullable()->default('null')->comment('公司名 中文');
$table->boolean('enabled')->default('true')->comment('激活状态');