Файловый менеджер - Редактировать - /home/clickysoft/public_html/furfotos.clickysoft.net/database/migrations/2024_06_25_111958_create_payments_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. * * @return void */ public function up() { Schema::create('payments', function (Blueprint $table) { $table->id(); $table->unsignedBigInteger('user_id'); $table->foreign('user_id')->on('users')->references('id')->onDelete('cascade'); $table->string('payment_charge_id')->nullable(); $table->decimal('amount'); $table->decimal('fee'); $table->decimal('amount_charged'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('payments'); } };
| ver. 1.4 |
Github
|
.
| PHP 8.1.29 | Генерация страницы: 0 |
proxy
|
phpinfo
|
Настройка