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
Given a schema with both models and enums, the models only get converted to camel-case and the enums are not
The text was updated successfully, but these errors were encountered:
before
model test_pushed_data { data_status test_pushed_data_data_status? pushed_data Json } enum test_pushed_data_data_status { ... }
after
model TestPushedData { dataStatus test_pushedData_data_status? @map("data_status") pushedData Json @map("pushed_data") } enum test_pushed_data_data_status { ... }
Sometimes test_pushed_data_data_status is changed to test_pushedData_data_status due to the influence of other columns.
test_pushed_data_data_status
test_pushedData_data_status
Sorry, something went wrong.
same question to me. i found another tool. https://github.com/iiian/prisma-case-format
No branches or pull requests
Given a schema with both models and enums, the models only get converted to camel-case and the enums are not
The text was updated successfully, but these errors were encountered: