Файл: database/migrations/2018_04_20_180042_create_stickers_table.php
Строк: 26
<?php
use IlluminateDatabaseMigrationsMigration;
use IlluminateDatabaseSchemaBlueprint;
use IlluminateSupportFacadesSchema;
return new class extends Migration {
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');
});
}
}
public function down(): void
{
Schema::dropIfExists('stickers');
}
};