move author to content

This commit is contained in:
Athou
2013-07-24 15:50:05 +02:00
parent c2b53b117c
commit 645164997d
4 changed files with 3 additions and 15 deletions

View File

@@ -43,9 +43,6 @@ public class FeedEntry extends AbstractModel {
@Column(length = 2048)
private String url;
@Column(name = "author", length = 128)
private String author;
@Temporal(TemporalType.TIMESTAMP)
private Date inserted;
@@ -117,14 +114,6 @@ public class FeedEntry extends AbstractModel {
this.guidHash = guidHash;
}
public String getAuthor() {
return author;
}
public void setAuthor(String author) {
this.author = author;
}
public Feed getFeed() {
return feed;
}