You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As a database developer I need to ensure consistent naming conventions for tables/models in the PostgreSQL database using Sequelize as the ORM So that the database structure is clear, maintainable, and adheres to best practices
Details and Assumptions
Naming conventions should follow a clear pattern.
Models should be named using PascalCase to align with Sequelize's conventions.
Existing tables/models will be reviewed and updated to conform to the naming standards.
Migration scripts should be created to rename any non-compliant tables.
Acceptance Criteria
Given a model name that does not follow the PascalCase convention
When the model is renamed to follow PascalCase
Then the model name should adhere to PascalCase format
Given an existing non-compliant database schema
When migration scripts are applied
Then all tables should conform to the established naming conventions
The text was updated successfully, but these errors were encountered:
As a database developer
I need to ensure consistent naming conventions for tables/models in the PostgreSQL database using Sequelize as the ORM
So that the database structure is clear, maintainable, and adheres to best practices
Details and Assumptions
Acceptance Criteria
The text was updated successfully, but these errors were encountered: