Optimize tables

This commit is contained in:
2020-04-29 21:16:05 +01:00
parent 7c22894e94
commit f514c4f848
5 changed files with 47 additions and 34 deletions

View File

@@ -29,7 +29,7 @@ class CreateAppointmentsTable extends Migration
'SCHEDULED',
'CONCLUDED'
])->default('SCHEDULED');
$table->text('meetingNotes');
$table->text('meetingNotes')->nullable();
$table->timestamps();
});
}