Skip to content
Snippets Groups Projects
Commit 1c5a151b authored by Piotr Gawron's avatar Piotr Gawron
Browse files

font size cannot be null

parent c2c9e2d1
No related branches found
No related tags found
1 merge request!981Resolve "Set border color for TextAreas"
Pipeline #15641 failed
...@@ -140,6 +140,7 @@ public abstract class Element implements BioEntity, Serializable, SbmlArgument { ...@@ -140,6 +140,7 @@ public abstract class Element implements BioEntity, Serializable, SbmlArgument {
/** /**
* Size of the font used for description. * Size of the font used for description.
*/ */
@Column(nullable = false)
private Double fontSize; private Double fontSize;
/** /**
......
update element_table set font_size = 12 where font_size is null;
alter table element_table alter column font_size set not null;
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment