increments('id'); $table->string('title')->comment('资源的描述')->index(); $table->string('link')->comment('资源的链接')->index(); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('links'); } }