Sha256: 95fe65750f27f2995b0b858ade1ccd5c22623f2dce7a3a4937d80c16a3bf9606
Contents?: true
Size: 443 Bytes
Versions: 4
Compression:
Stored size: 443 Bytes
Contents
module PhcdevworksPortfolio class Project::Post < ApplicationRecord # Image Upload has_one_attached :project_post_image # Relationships has_and_belongs_to_many :categories, class_name: "Project::Category", :join_table => "phcdevworks_portfolio_categories_posts" has_and_belongs_to_many :types, class_name: "Project::Type", :join_table => "phcdevworks_portfolio_posts_types" belongs_to :user, class_name: "PhcdevworksAccounts::User" end end
Version data entries
4 entries across 4 versions & 1 rubygems