Abhishek Sanghani
05/27/2022, 11:15 AMNurul
05/27/2022, 1:47 PMalter table ratings
add constraint check_rating
check (rating between 0 and 5);
You won’t need to define this in schema file, you can define the rating column in your model file as Int and enforce the above constraint on your database, entering any other values except [0..5] will throw an errorAbhishek Sanghani
05/27/2022, 4:54 PM