kcal/elastic/migrations/2021_03_04_193706_create_re...

34 lines
835 B
PHP

<?php
declare(strict_types=1);
use ElasticAdapter\Indices\Mapping;
use ElasticAdapter\Indices\Settings;
use ElasticMigrations\Facades\Index;
use ElasticMigrations\MigrationInterface;
final class CreateRecipesIndex implements MigrationInterface
{
/**
* Run the migration.
*/
public function up(): void
{
Index::create('recipes', function (Mapping $mapping, Settings $settings) {
$mapping->searchAsYouType('name', ['boost' => 2])
->keyword('tags', ['normalizer' => 'lowercase'])
->text('description')
->text('source')
->date('created_at')
->date('updated_at');
});
}
/**
* Reverse the migration.
*/
public function down(): void
{
Index::dropIfExists('recipes');
}
}