Skip to content

Instantly share code, notes, and snippets.

@deepakmahakale
Created March 22, 2019 07:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save deepakmahakale/3dfc016ccee126a598c87482a19e1745 to your computer and use it in GitHub Desktop.
Save deepakmahakale/3dfc016ccee126a598c87482a19e1745 to your computer and use it in GitHub Desktop.
# app/models/user.rb
class User < ActiveRecord::Base
has_many :posts, dependent: :destroy
end
# app/models/post.rb
class Post < ActiveRecord::Base
belongs_to :user
scope :published, -> { where(published: true) }
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment