increments('id'); $table->string('name'); $table->string('logo')->nullable(); $table->string('unique_hash')->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('companies'); } }