id(); $table->string('name'); $table->time('start_time')->nullable(); $table->time('end_time')->nullable(); $table->boolean('status')->default(1); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('shifts'); } }