]> git.openstreetmap.org Git - rails.git/blob - app/models/note_subscription.rb
Create note subscription table and model
[rails.git] / app / models / note_subscription.rb
1 # == Schema Information
2 #
3 # Table name: note_subscriptions
4 #
5 #  user_id :bigint(8)        not null, primary key
6 #  note_id :bigint(8)        not null, primary key
7 #
8 # Indexes
9 #
10 #  index_note_subscriptions_on_note_id  (note_id)
11 #
12 # Foreign Keys
13 #
14 #  fk_rails_...  (note_id => notes.id)
15 #  fk_rails_...  (user_id => users.id)
16 #
17 class NoteSubscription < ApplicationRecord
18   belongs_to :user
19   belongs_to :note
20 end