Files
kontor/kontor-rails/app/models/comic.rb
T
tpeetz b039ae97a9
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 4s
add subproject kontor-rails
2026-06-01 23:47:57 +02:00

9 lines
260 B
Ruby

class Comic < ApplicationRecord
belongs_to :publisher
has_many :issues, optional = true
has_many :story_arcs, optional = true
has_many :trade_paperbacks, optional = true
has_many :volumes, optional = true
has_many :comic_works, optional = true
end