Файловый менеджер - Редактировать - /home/clickysoft/public_html/jmapi5.clickysoft.net/database/migrations/2023_07_13_145006_create_coupons_table.php
Назад
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; return new class extends Migration { /** * Run the migrations. */ public function up(): void { Schema::create('coupons', function (Blueprint $table) { $table->id(); $table->string('code', 190); $table->enum('discount_type', ['Percent', 'Fixed']); $table->decimal('discount_value'); $table->date('expiry_date')->nullable(); $table->integer('number_of_usage')->nullable(); $table->integer('redemption_count')->nullable(); $table->boolean('status')->default(1); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('coupons'); } };
| ver. 1.4 |
Github
|
.
| PHP 8.1.29 | Генерация страницы: 0 |
proxy
|
phpinfo
|
Настройка