2022_02_22_031511_create_customers_table.php 775B

123456789101112131415161718192021222324252627282930313233343536
  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('customers', function (Blueprint $table) {
  15. $table->id();
  16. $table->string('customer_number')->unique();
  17. $table->string('name');
  18. $table->string('phone');
  19. $table->enum('gender_id', [1, 2]); // 1(female) 2(male)
  20. $table->timestamps();
  21. });
  22. }
  23. /**
  24. * Reverse the migrations.
  25. *
  26. * @return void
  27. */
  28. public function down()
  29. {
  30. Schema::dropIfExists('customers');
  31. }
  32. };