uuid('id')->primary(); $table->string('client_name')->unique()->nullable(); $table->string('client_full_name')->nullable(); $table->string('contact_name')->nullable(); $table->string('contact_email')->nullable(); $table->string('address_line1')->nullable(); $table->string('address_line2')->nullable(); $table->string('address_line3')->nullable(); $table->string('address_line4')->nullable(); $table->string('address_locality')->nullable(); $table->string('address_town_city')->nullable(); $table->string('address_county')->nullable(); $table->string('address_post_code')->nullable(); $table->string('access_key')->nullable(); $table->string('secret_key')->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('clients'); } }