When an entity has the property fileName, no Database table generated to contain its objects. Reproduce as follows:

entity TestFN {
  fileName :: String
}

When viewing the table listing in MySQL, there is no table “_testfn”. However, if the following entity is created, that table is generated.

entity TestFN {
  filePath :: String
}

An obvious workaround is to rename the property, but this should not be required.

Submitted by Ot ten Thije on 25 March 2010 at 15:38

Log in to post comments