. */ use Illuminate\Database\Migrations\Migration; class SetupElasticsearch extends Migration { /** * Run the migrations. * * @return void */ public function up() { $elasticsearch = Elasticsearch::connection(); $elasticsearch->indices()->create([ 'index' => 'ponyfm', 'body' => [ 'mappings' => [ 'track' => [ '_source' => ['enabled' => true], 'dynamic' => 'strict', 'properties' => [ 'title' => ['type' => 'string', 'analyzer' => 'english'], 'artist' => ['type' => 'string'], 'published_at' => ['type' => 'date'], 'genre' => ['type' => 'string', 'analyzer' => 'english'], 'track_type' => ['type' => 'string', 'index' => 'not_analyzed'], // This field is intended to be used as an array. // Note that all Elasticsearch fields can technically be used as arrays. // See: https://www.elastic.co/guide/en/elasticsearch/reference/current/array.html 'show_songs' => ['type' => 'string'], ] ], 'album' => [ '_source' => ['enabled' => true], 'dynamic' => 'strict', 'properties' => [ 'title' => ['type' => 'string', 'analyzer' => 'english'], 'artist' => ['type' => 'string'], // This field is intended to be used as an array. // Note that all Elasticsearch fields can technically be used as arrays. // See: https://www.elastic.co/guide/en/elasticsearch/reference/current/array.html 'tracks' => ['type' => 'string', 'analyzer' => 'english'] ] ], 'playlist' => [ '_source' => ['enabled' => true], 'dynamic' => 'strict', 'properties' => [ 'title' => ['type' => 'string', 'analyzer' => 'english'], 'curator' => ['type' => 'string'], // This field is intended to be used as an array. // Note that all Elasticsearch fields can technically be used as arrays. // See: https://www.elastic.co/guide/en/elasticsearch/reference/current/array.html 'tracks' => ['type' => 'string', 'analyzer' => 'english'] ] ], 'user' => [ '_source' => ['enabled' => true], 'dynamic' => 'strict', 'properties' => [ 'username' => ['type' => 'string', 'index' => 'not_analyzed'], 'display_name' => ['type' => 'string'], // This field is intended to be used as an array. // Note that all Elasticsearch fields can technically be used as arrays. // See: https://www.elastic.co/guide/en/elasticsearch/reference/current/array.html 'tracks' => ['type' => 'string', 'analyzer' => 'english'] ] ], ] ] ]); Artisan::call('rebuild:search'); } /** * Reverse the migrations. * * @return void */ public function down() { $elasticsearch = Elasticsearch::connection(); $elasticsearch->indices()->delete(['index' => 'ponyfm']); } }