mirror of
https://github.com/hibernate/hibernate-orm
synced 2025-02-10 05:04:52 +00:00
HHH-17049 Avoid use of reserved word 'open' for column name
(cherry picked from commit e248379b0aacb6cceea4b58cf416d4ce06509400)
This commit is contained in:
parent
ef060205c0
commit
a019d8b05b
@ -15,6 +15,7 @@
|
||||
import org.junit.runner.RunWith;
|
||||
|
||||
import jakarta.persistence.CascadeType;
|
||||
import jakarta.persistence.Column;
|
||||
import jakarta.persistence.Entity;
|
||||
import jakarta.persistence.FetchType;
|
||||
import jakarta.persistence.GeneratedValue;
|
||||
@ -281,6 +282,7 @@ public static class AccountPreferences {
|
||||
@GeneratedValue
|
||||
private long id;
|
||||
|
||||
@Column(name = "is_open")
|
||||
private boolean open = false;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user