/
ArtSerg
/
IntegrationProject
Обзор
Документация
Войти
/
ArtSerg
/
IntegrationProject
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
lab3
app/models/book.rb
13 строк
247 B
Yuriy
cors
10 дек 2025, 17:22
10 дек 2025, 17:22
490080a
Код
Авторство
О чём код?
class Book < ApplicationRecord belongs_to :author belongs_to :user, optional: true has_many :reviews enum genre: { detective: 'detective', fantasy: 'fantasy', thriller: 'thriller', default: 'default' } end