id(); $table->integer('course_id'); $table->string('title')->comment('章节名'); $table->integer('sort')->default(0); $table->tinyInteger('status')->default(1)->comment('是否显示,1显示,0不显示'); $table->softDeletes(); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('course_chapters'); } }