id(); $table->string('title', 50)->nullable()->comment('模块标题'); $table->string('name')->unique()->comment('模块标识'); $table->text('description')->nullable()->comment('模块描述'); $table->boolean('status')->comment('模块状态'); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('modules'); } };