Файловый менеджер - Редактировать - /home/clickysoft/public_html/furfotos.clickysoft.net/database/migrations/2021_09_11_164409_posts.php
Назад
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; class Posts extends Migration { public function up() { Schema::table('posts', function (Blueprint $table) { $table->dropForeign(['pet_id']); $table->dropColumn('pet_id'); }); Schema::create('post_pets', function (Blueprint $table) { $table->foreignId('post_id') ->references('id') ->on('posts') ->cascadeOnDelete(); $table->foreignId('pet_id') ->references('id') ->on('pets') ->cascadeOnDelete(); }); } public function down() { Schema::drop('post_pets'); Schema::table('posts', function (Blueprint $table) { $table->foreignId('pet_id') ->nullable() ->references('id') ->on('pets') ->cascadeOnDelete(); }); } }
| ver. 1.4 |
Github
|
.
| PHP 8.1.29 | Генерация страницы: 0 |
proxy
|
phpinfo
|
Настройка