increments('id'); $table->string('url'); $table->string('author_name')->nullable(); $table->string('author_url')->nullable(); $table->text('content')->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('likes'); } }