id(); $table->string('user_id'); $table->string('name'); $table->string('department_id')->nullable(); $table->string('region'); $table->boolean('is_checked_in'); $table->boolean('is_awarded'); $table->string('activity_id'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('check_ins'); } };