add default value to email
This commit is contained in:
parent
de48147a21
commit
6c8736ffaf
|
|
@ -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();
|
||||
|
|
|
|||
Loading…
Reference in New Issue