001 package de.kiezatlas.migrations;
002
003 import de.deepamehta.core.model.IndexMode;
004 import de.deepamehta.core.service.Migration;
005
006
007
008 public class Migration2 extends Migration {
009
010 @Override
011 public void run() {
012 dms.getTopicType("ka2.geo_object.name").addIndexMode(IndexMode.FULLTEXT_KEY);
013 }
014 }