Вход Регистрация
Файл: database/migrations/2018_04_20_180020_create_guestbook_table.php
Строк: 36
<?php

use IlluminateDatabaseMigrationsMigration;
use 
IlluminateDatabaseSchemaBlueprint;
use 
IlluminateSupportFacadesSchema;

final class 
CreateGuestbookTable extends Migration
{
    
/**
     * Migrate Up.
     */
    
public function up(): void
    
{
        if (! 
Schema::hasTable('guestbook')) {
            
Schema::create('guestbook', function (Blueprint $table) {
                
$table->increments('id');
                
$table->integer('user_id')->nullable();
                
$table->text('text');
                
$table->ipAddress('ip');
                
$table->string('brow'25);
                
$table->text('reply')->nullable();
                
$table->string('guest_name'20)->nullable();
                
$table->integer('edit_user_id')->nullable();
                
$table->boolean('active')->default(true);
                
$table->integer('updated_at')->nullable();
                
$table->integer('created_at');

                
$table->index('created_at');
                
$table->index(['active''created_at']);
            });
        }
    }

    
/**
     * Migrate Down.
     */
    
public function down(): void
    
{
        
Schema::dropIfExists('guestbook');
    }
}
Онлайн: 1
Реклама