increments('id'); $table->string('name', 200)->nullable(); $table->string('api_url', 255)->nullable(); $table->tinyInteger('is_active')->nullable(); $table->string('website', 250)->nullable(); $table->text('phone')->nullable(); $table->softDeletes(); $table->nullableTimestamps(); }); } /* * Reverse the migrations. * * @return void */ public function down() { Schema::drop('shipping_methods'); } }