Sha256: 27b1904241ecc23431c130fdbf9d84f7508424c36accce9307ee31ea77cc800d

Contents?: true

Size: 393 Bytes

Versions: 3

Compression:

Stored size: 393 Bytes

Contents

# encoding: utf-8

# == Schema Information
#
# Table name: goldencobra_article_authors
#
#  id         :integer          not null, primary key
#  article_id :integer
#  author_id  :integer
#  created_at :datetime         not null
#  updated_at :datetime         not null
#

module Goldencobra
  class ArticleAuthor < ActiveRecord::Base
    belongs_to :article
    belongs_to :author
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
goldencobra-2.3.4 app/models/goldencobra/article_author.rb
goldencobra-2.3.3 app/models/goldencobra/article_author.rb
goldencobra-1.4.27 app/models/goldencobra/article_author.rb