v0.5.15h - Fixed bugs

This commit is contained in:
frederikpyt
2020-08-10 12:07:41 +02:00
parent 74767b3336
commit bb1aade947
3 changed files with 7 additions and 7 deletions
@@ -21,7 +21,7 @@ class CreateContact extends Migration
$table->string('contactname', 255);
$table->string('title', 255);
$table->string('email', 255);
$table->integer('phone');
$table->integer('phone')->nullable(true);
$table->string('phonetimes');
});
}
+4 -4
View File
@@ -30,28 +30,28 @@ class ContactSeeder extends Seeder
'contactname' => "Thomas Thomsen",
'email' => "thth@sde.dk",
'title' => "Kollegieassistent",
'phone' => "",
'phone' => null,
'phonetimes' => "",
],
[
'contactname' => "Anja Holm Brix",
'email' => "ahb@sde.dk",
'title' => "Kollegieassistent",
'phone' => "",
'phone' => null,
'phonetimes' => "",
],
[
'contactname' => "Britta Overgaard Brink Olsen",
'email' => "brio@sde.dk",
'title' => "Kollegieassistent",
'phone' => "",
'phone' => null,
'phonetimes' => "",
],
[
'contactname' => "Jesper Sandberg",
'email' => "jesa@sde.dk",
'title' => "Kollegieassistent",
'phone' => "",
'phone' => null,
'phonetimes' => "",
],
];