2023_03_24_150306_create_causals_table.php 977 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('causals', function (Blueprint $table) {
  15. $table->id();
  16. $table->unsignedBigInteger('parent_id');
  17. $table->foreign('parent_id')->nullable()->references('id')->on('causals')->onUpdate('cascade')->onDelete('cascade');
  18. $table->string('name');
  19. $table->enum('type', ['IN', 'OUT']);
  20. $table->integer('money')->default(0);
  21. $table->integer('enabled')->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('causals');
  34. }
  35. };