Skip to content

Commit

Permalink
increases size of URL field in Entry
Browse files Browse the repository at this point in the history
  • Loading branch information
mindcrime committed Feb 13, 2011
1 parent fc018c0 commit 9d4c5d5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions grails-app/domain/org/fogbeam/neddick/Entry.groovy
Expand Up @@ -12,9 +12,9 @@ class Entry

static constraints =
{
url( nullable:true );
url( nullable:true, maxSize:2048 );
}

static transients = [ "score", "hotness", "controversy", "age", "siteConfigService" ];
static mapping = {
channel lazy:false // eagerly fetch the channel
Expand Down

0 comments on commit 9d4c5d5

Please sign in to comment.