Файл: database/migrations/2018_04_20_180010_create_comments_table.php
Строк: 32
<?php
declare(strict_types=1);
use IlluminateDatabaseMigrationsMigration;
use IlluminateDatabaseSchemaBlueprint;
use IlluminateSupportFacadesSchema;
final class CreateCommentsTable extends Migration
{
/**
* Migrate Up.
*/
public function up(): void
{
if (! Schema::hasTable('comments')) {
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
{
Schema::dropIfExists('comments');
}
}