MongoDB-Uppgift/app/models/post.rb
2025-05-23 14:14:30 +02:00

6 lines
130 B
Ruby

class Post
include Mongoid::Document
include Mongoid::Timestamps
field :title, type: String
field :body, type: String
end