id(); $table->string('answer', 50)->comment('成语答案'); $table->string('hint', 255)->comment('谜语线索提示'); $table->boolean('is_active')->default(true)->comment('是否启用'); $table->unsignedSmallInteger('sort')->default(0)->comment('排序'); $table->timestamps(); }); } /** * 回滚迁移。 */ public function down(): void { Schema::dropIfExists('idioms'); } };