don't index blobs

This commit is contained in:
Athou
2013-03-31 08:45:55 +02:00
parent 64439d36a2
commit f83507f080
2 changed files with 2 additions and 2 deletions

View File

@@ -18,7 +18,7 @@ import com.google.common.collect.Sets;
@SuppressWarnings("serial")
public class Feed extends AbstractModel {
@Column(length = 2048, nullable = false, unique = true)
@Column(length = 2048, nullable = false)
private String url;
@Transient

View File

@@ -21,7 +21,7 @@ import org.hibernate.annotations.Index;
@SuppressWarnings("serial")
public class FeedEntry extends AbstractModel {
@Column(length = 2048, nullable = false, unique = true)
@Column(length = 2048, nullable = false)
private String guid;
@ManyToOne