2023_03_20_212625_create_cards_table.php 937 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('cards', function (Blueprint $table) {
  15. $table->id();
  16. $table->string('name');
  17. $table->integer('next_day_expire')->nullable();
  18. $table->integer('next_month_expire')->nullable();
  19. $table->integer('enabled')->default(1);
  20. $table->integer('use_for_user_check')->default(1);
  21. $table->integer('one_year_expire')->default(1);
  22. $table->softDeletes();
  23. $table->timestamps();
  24. });
  25. }
  26. /**
  27. * Reverse the migrations.
  28. *
  29. * @return void
  30. */
  31. public function down()
  32. {
  33. Schema::dropIfExists('cards');
  34. }
  35. };