EPHEC-Enovatech/sensorygarden-api

View on GitHub
app/models/category.rb

Summary

Maintainability
A
0 mins
Test Coverage
class Category < ApplicationRecord
    has_many :categories_posts
    has_many :posts, through: :categories_posts

    validates :categoryName, presence: true, uniqueness: true
end