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

declare(strict_types=1);

use 
IlluminateDatabaseMigrationsMigration;
use 
IlluminateDatabaseSchemaBlueprint;
use 
IlluminateSupportFacadesSchema;

final class 
CreateChangemailTable extends Migration
{
    
/**
     * Migrate Up.
     */
    
public function up(): void
    
{
        if (! 
Schema::hasTable('changemail')) {
            
Schema::create('changemail', function (Blueprint $table) {
                
$table->increments('id');
                
$table->integer('user_id');
                
$table->string('mail'50);
                
$table->string('hash'25);
                
$table->integer('created_at');
            });
        }
    }

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