update company table
This commit is contained in:
@@ -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('激活状态');
|
||||
|
||||
Reference in New Issue
Block a user