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