Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Long property names result in invalid DDL #403

Closed
Lugribossk opened this issue Aug 31, 2015 · 0 comments
Closed

Long property names result in invalid DDL #403

Lugribossk opened this issue Aug 31, 2015 · 0 comments
Assignees
Labels
Milestone

Comments

@Lugribossk
Copy link

E.g.:

@Entity
public class Example {
    private String shortName;
    private String loooooooooooooooooooooongName;
}

Which generates

create table example (
  short_name                    varchar(255),
  loooooooooooooooooooooong_namevarchar(255)
);

This was working in 4.6.3 before I upgraded to 6.5.1.

@rbygrave rbygrave added the bug label Aug 31, 2015
@rbygrave rbygrave added this to the 6.5.2 milestone Aug 31, 2015
@rbygrave rbygrave self-assigned this Aug 31, 2015
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

2 participants