In the MySQL database, one table has a column
column_name bit(4) DEFAULT NULL
I use annotation in my model class. How to make it 4 bits in the annotation?
@Column(column="column_name", type="bit", nullable=true)
In the MySQL database, one table has a column
column_name bit(4) DEFAULT NULL
I use annotation in my model class. How to make it 4 bits in the annotation?
@Column(column="column_name", type="bit", nullable=true)