Index implements gorm.Index interface
| 4 | |
| 5 | // Index implements gorm.Index interface |
| 6 | type Index struct { |
| 7 | TableName string |
| 8 | NameValue string |
| 9 | ColumnList []string |
| 10 | PrimaryKeyValue sql.NullBool |
| 11 | UniqueValue sql.NullBool |
| 12 | OptionValue string |
| 13 | } |
| 14 | |
| 15 | // Table return the table name of the index. |
| 16 | func (idx Index) Table() string { |
nothing calls this directly
no outgoing calls
no test coverage detected