Файловый менеджер - Редактировать - /home/clickysoft/public_html/angelo.clickysoft.net/database/migrations/2023_01_31_122007_create_transactions_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('transactions', function (Blueprint $table) { $table->id(); $table->dateTime('date'); $table->string('type'); $table->double('amount'); $table->integer('withdrawal_requests_id')->nullable()->default(0); $table->tinyInteger('status')->comment('0 => Pending, 1 => Completed, 2 => Rejected'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('transactions'); } };
| ver. 1.4 |
Github
|
.
| PHP 8.1.29 | Генерация страницы: 0.01 |
proxy
|
phpinfo
|
Настройка