Search: Replace search implementation (#23855)

This commit is contained in:
Emil Tullstedt
2020-04-27 14:16:03 +02:00
committed by GitHub
parent bace47d40e
commit 830e8dc5fd
8 changed files with 96 additions and 368 deletions
@@ -215,4 +215,9 @@ func addDashboardMigration(mg *Migrator) {
mg.AddMigration("Add check_sum column", NewAddColumnMigration(dashboardExtrasTableV2, &Column{
Name: "check_sum", Type: DB_NVarchar, Length: 32, Nullable: true,
}))
mg.AddMigration("Add index for dashboard_title", NewAddIndexMigration(dashboardV2, &Index{
Cols: []string{"title"},
Type: IndexType,
}))
}