Change email field title in migration

This commit is contained in:
Matthew Shillam 2018-10-22 11:14:54 +01:00
parent 78009f0eaf
commit 8907eece2a
1 changed files with 1 additions and 1 deletions

View File

@ -18,7 +18,7 @@ class CreateClientsTable extends Migration
$table->string('client_name')->unique()->nullable();
$table->string('client_full_name')->nullable();
$table->string('contact_name')->nullable();
$table->string('contact_email')->nullable();
$table->string('email')->nullable();
$table->string('address_line1')->nullable();
$table->string('address_line2')->nullable();
$table->string('address_line3')->nullable();