increments('id'); $table->string('parent_name', 255)->nullable(); $table->string('address', 255)->nullable(); $table->string('phone', 20)->nullable(); $table->string('email', 50)->nullable(); $table->string('child_name', 255)->nullable(); $table->date('child_birth_date')->nullable(); $table->string('child_school', 255)->nullable(); $table->string('child_grade', 255)->nullable(); $table->date('schedule_time')->nullable(); $table->softDeletes(); $table->nullableTimestamps(); }); } /* * Reverse the migrations. * * @return void */ public function down() { Schema::drop('enrollments'); } }