2023_02_06_030248_create_check_ins_table.php 879 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. <?php
  2. use Illuminate\Database\Migrations\Migration;
  3. use Illuminate\Database\Schema\Blueprint;
  4. use Illuminate\Support\Facades\Schema;
  5. return new class extends Migration
  6. {
  7. /**
  8. * Run the migrations.
  9. *
  10. * @return void
  11. */
  12. public function up()
  13. {
  14. Schema::create('check_ins', function (Blueprint $table) {
  15. $table->id();
  16. $table->string('user_id');
  17. $table->string('name');
  18. $table->string('department_id')->nullable();
  19. $table->string('region');
  20. $table->boolean('is_checked_in');
  21. $table->boolean('is_awarded');
  22. $table->string('activity_id');
  23. $table->timestamps();
  24. });
  25. }
  26. /**
  27. * Reverse the migrations.
  28. *
  29. * @return void
  30. */
  31. public function down()
  32. {
  33. Schema::dropIfExists('check_ins');
  34. }
  35. };