We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
With MySQL (and other DBMS as well ❓) is is possible to define the column length to be used within an index
CREATE INDEX part_of_name ON customer (name(10));
Is there a way to respect this with the schema classes when generating the sql statements?
The text was updated successfully, but these errors were encountered:
Documentation refers an option array for the @Index annotation, but I don't know if lenght is supported...
option
@Index
lenght
http://doctrine-orm.readthedocs.org/projects/doctrine-orm/en/latest/reference/annotations-reference.html#annref-index
Sorry, something went wrong.
Fixed by #2412.
This thread has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs.
No branches or pull requests
With MySQL (and other DBMS as well ❓) is is possible to define the column length to be used within an index
Is there a way to respect this with the schema classes when generating the sql statements?
The text was updated successfully, but these errors were encountered: