id(); $table->string('title')->comment('标题'); $table->text('description')->nullable()->comment('简介'); $table->string('cover')->nullable()->comment('封面'); $table->date('awarded_date')->nullable()->comment('日期'); $table->unsignedTinyInteger('is_enable')->default(1)->comment('显示开关'); $table->unsignedInteger('sort')->default(0)->comment('排序'); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('timelines'); } };