bigIncrements('id'); $table->text('url'); $table->string('mimetype')->nullable(); $table->text('title')->nullable(); $table->text('description')->nullable(); $table->text('favicon_path')->nullable(); $table->dateTime('checked_at')->nullable(); $table->timestamps(); $table->unsignedBigInteger('visits')->default(0); $table->unsignedSmallInteger('http_status_code')->default(0); $table->string('http_status_text')->nullable(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('documents'); } }