increments('id'); $table->string('name'); $table->text('description')->nullable(); $table->string('url')->nullable(); $table->integer('is_free'); $table->integer('status'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('couriers'); } }