Sha256: f6e763c72e5c6d423b8ffce137fa52e56424b07c0a7663f9fa621a5340d01d90
Contents?: true
Size: 292 Bytes
Versions: 24
Compression:
Stored size: 292 Bytes
Contents
# frozen_string_literal: true class Video include Mongoid::Document field :title, type: String field :year, type: Integer field :release_dates, type: Set field :genres, type: Array embedded_in :person belongs_to :post belongs_to :game default_scope ->{ asc(:title) } end
Version data entries
24 entries across 24 versions & 1 rubygems