Background
We are using Postgresql without foreign key/unique constraints. This means we need to do our validations on the application level. We made this modeling decision due to the flexibility this gives us in migrations and when defining new relationships. However, This requires us to diligently test our models' changesets. We cannot leave these untested before consuming user/movie data.
Task
Test the following tables.
Background
We are using Postgresql without foreign key/unique constraints. This means we need to do our validations on the application level. We made this modeling decision due to the flexibility this gives us in migrations and when defining new relationships. However, This requires us to diligently test our models' changesets. We cannot leave these untested before consuming user/movie data.
Task
Test the following tables.