bigIncrements('id'); $table->text('url'); $table->text('error')->nullable(); $table->text('title')->nullable(); $table->text('description')->nullable(); $table->text('favicon_path')->nullable(); $table->dateTime('checked_at')->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('feeds'); } }