Commit 15d053eb by jkj

remove lengths

git-svn-id: https://dev.intra.insomnia.fi/svn/trunk@47 8cf89bec-f6a3-4178-919f-364fb3449fe5
1 parent aa793e62
...@@ -34,11 +34,11 @@ public class UserImage implements Serializable { ...@@ -34,11 +34,11 @@ public class UserImage implements Serializable {
@Id @Id
@Column(name = "user_images_id", nullable = false) @Column(name = "user_images_id", nullable = false)
private Integer userImagesId; private Integer userImagesId;
@Column(name = "name", length = 2147483647) @Column(name = "name")
private String name; private String name;
@Column(name = "description", length = 2147483647) @Column(name = "description")
private String description; private String description;
@Column(name = "mime_type", length = 2147483647) @Column(name = "mime_type")
private String mimeType; private String mimeType;
@Lob @Lob
@Column(name = "image_data") @Column(name = "image_data")
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!