add default value to email

This commit is contained in:
Matthew Shillam 2018-10-22 23:49:48 +01:00
parent de48147a21
commit 6c8736ffaf
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('email')->nullable();
$table->string('email')->nullable()->default('reports@mydentalbackup.co.uk');;
$table->string('address_line1')->nullable();
$table->string('address_line2')->nullable();
$table->string('address_line3')->nullable();