mirror of
https://github.com/indentlabs/notebook.git
synced 2025-10-26 11:19:22 +00:00
11 lines
221 B
Ruby
11 lines
221 B
Ruby
class Birthing < ApplicationRecord
|
|
include HasContentLinking
|
|
|
|
belongs_to :user, optional: true
|
|
|
|
belongs_to :character
|
|
belongs_to :birthplace, class_name: 'Location', optional: true
|
|
|
|
# TODO: more fields here
|
|
end
|