您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

2023_05_21_163808_create_discounts_table.php 1.0KB

1234567891011121314151617181920212223242526272829303132333435
  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. public function up(): void
  11. {
  12. Schema::create('discounts', function (Blueprint $table) {
  13. $table->id();
  14. $table->string('name');
  15. $table->text('description')->nullable();
  16. $table->decimal('rate', 15, 4);
  17. $table->string('computation')->default('percentage'); // percentage, fixed
  18. $table->string('type')->default('sales'); // sales, purchases
  19. $table->string('scope')->nullable(); // product, service, none
  20. $table->boolean('enabled')->default(true);
  21. $table->foreignId('created_by')->nullable()->constrained('users')->nullOnDelete();
  22. $table->timestamps();
  23. });
  24. }
  25. /**
  26. * Reverse the migrations.
  27. */
  28. public function down(): void
  29. {
  30. Schema::dropIfExists('discounts');
  31. }
  32. };