id(); $table->timestamps(); $table->string('url')->unique(); $table->string('title')->default(''); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('article'); } }