Просмотр файла database/migrations/20180420180010_create_comments_table.php

Размер файла: 985B
<?php

declare(strict_types=1);

use App\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;

final class CreateCommentsTable extends Migration
{
    /**
     * Migrate Up.
     */
    public function up(): void
    {
        if (! $this->schema->hasTable('comments')) {
            $this->schema->create('comments', function (Blueprint $table) {
                $table->increments('id');
                $table->integer('user_id');
                $table->string('relate_type', 10);
                $table->integer('relate_id');
                $table->text('text');
                $table->ipAddress('ip');
                $table->string('brow', 25);
                $table->integer('created_at');

                $table->index('created_at');
                $table->index(['relate_type', 'relate_id']);
            });
        }
    }

    /**
     * Migrate Down.
     */
    public function down(): void
    {
        $this->schema->dropIfExists('comments');
    }
}