Файловый менеджер - Редактировать - /home/clickysoft/public_html/furfotos.clickysoft.net/database/migrations/2021_10_17_172833_create_likes_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('likes', function (Blueprint $table) { $table->bigIncrements('id'); $table->foreignId('user_id') ->references('id') ->on('users') ->cascadeOnDelete(); $table->enum('likeable_type', ['user', 'pet', 'post', 'comment', 'like']) ->nullable(); $table->unsignedBigInteger('likeable_id') ->nullable(); $table->timestamps(); $table->softDeletes(); }); } public function down() { Schema::dropIfExists('likes'); } };
| ver. 1.4 |
Github
|
.
| PHP 8.1.29 | Генерация страницы: 0 |
proxy
|
phpinfo
|
Настройка