Просмотр файла database/migrations/2018_04_20_180042_create_stickers_table.php

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

declare(strict_types=1);

use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;

final class CreateStickersTable extends Migration
{
    /**
     * Migrate Up.
     */
    public function up(): void
    {
        if (! Schema::hasTable('stickers')) {
            Schema::create('stickers', function (Blueprint $table) {
                $table->increments('id');
                $table->integer('category_id');
                $table->string('name', 100);
                $table->string('code', 20);

                $table->index('code');
            });
        }
    }

    /**
     * Migrate Down.
     */
    public function down(): void
    {
        Schema::dropIfExists('stickers');
    }
}