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

declare(strict_types=1);

use 
IlluminateDatabaseMigrationsMigration;
use 
IlluminateDatabaseSchemaBlueprint;
use 
IlluminateSupportFacadesSchema;

final class 
CreateWallsTable extends Migration
{
    
/**
     * Migrate Up.
     */
    
public function up(): void
    
{
        if (! 
Schema::hasTable('walls')) {
            
Schema::create('walls', function (Blueprint $table) {
                
$table->increments('id');
                
$table->integer('user_id');
                
$table->integer('author_id');
                
$table->text('text');
                
$table->integer('created_at');

                
$table->index('user_id');
                
$table->index('created_at');
            });
        }
    }

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