Файл: database/migrations/2018_04_20_180042_create_stickers_table.php
Строк: 26
<?php
declare(strict_types=1);
use IlluminateDatabaseMigrationsMigration;
use IlluminateDatabaseSchemaBlueprint;
use IlluminateSupportFacadesSchema;
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');
}
}