如何在Grails中为继承使用的DB列'class'添加索引?

时间:2010-02-24 23:20:05

标签: grails gorm

使用 table-per-hierarchy 继承时,GORM会创建一个“类”列,用于存储实例的类名。

我想在此列中添加数据库索引,因为我的许多SQL查询都包含where class='com.myapp.Mychildclass'。但是,我没有成功使用此代码:

static mapping = { 
    columns { 
        'class' column: 'class', index: 'class_idx' 
    } 
} 

我在没有创建索引的情况下尝试了此代码的不同版本。

我该怎么做?

1 个答案:

答案 0 :(得分:-1)

我在这里找到了这个问题的答案: http://grails.1312388.n4.nabble.com/GORM-Howto-index-the-inheritance-class-column-td1563116.html

更新:链接已更新