Файловый менеджер - Редактировать - /home/clickysoft/public_html/furfotos.clickysoft.net/database/migrations/2021_10_21_170000_create_comments_table.php
Назад
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; return new class extends Migration { public function up() { Schema::create('comments', function (Blueprint $table) { $table->bigIncrements('id'); $table->foreignId('user_id') ->references('id') ->on('users') ->cascadeOnDelete(); $table->enum('commentable_type', [ addslashes(\App\Models\Post::class), addslashes(\App\Models\Pet::class), ]) ->nullable(false) ->default(null); $table->unsignedBigInteger('commentable_id')->nullable(); $table->text('text'); $table->timestamps(); $table->softDeletes(); }); } public function down() { Schema::dropIfExists('comments'); } };
| ver. 1.4 |
Github
|
.
| PHP 8.1.29 | Генерация страницы: 0 |
proxy
|
phpinfo
|
Настройка