このコミットが含まれているのは:
守矢諏訪子 2021-10-14 13:19:45 +09:00
コミット 3b9a9e070c
4個のファイルの変更1行の追加5行の削除

ファイルの表示

@ -31,7 +31,6 @@ class ChildFactory extends Factory
'identity' => $this->faker->text(20),
'email' => $this->faker->email,
'tel' => $tel[rand(0, 2)],
'tel_verified_at' => $this->faker->dateTime,
'password' => $this->faker->password,
'last_name' => $this->faker->lastName,
'first_name' => $this->faker->firstName,

ファイルの表示

@ -29,7 +29,6 @@ class FatherFactory extends Factory
return [
'email' => $this->faker->email,
'email_verified_at' => $this->faker->dateTime,
'password' => $this->faker->password,
'company' => $this->faker->company,
'image' => $this->faker->imageUrl,

ファイルの表示

@ -16,9 +16,8 @@ class CreateFathersTable extends Migration
Schema::create('fathers', function (Blueprint $table) {
$table->id();
$table->string('email', 255)->unique();
$table->dateTime('email_verified_at');
$table->string('password', 72);
$table->string('company', 100)->nullable();
$table->string('company', 100);
$table->string('image', 100)->nullable();
$table->string('profile', 1000)->nullable();
$table->string('tel', 11)->unique();

ファイルの表示

@ -18,7 +18,6 @@ class CreateChildrenTable extends Migration
$table->string('identity', 20);
$table->string('email', 72)->unique();
$table->string('tel', 11)->unique();
$table->dateTime('tel_verified_at');
$table->string('password', 255);
$table->string('last_name', 100);
$table->string('first_name', 100);