1 # frozen_string_literal: true
 
   3 class CreateNoteSubscriptions < ActiveRecord::Migration[7.2]
 
   5     create_table :note_subscriptions, :primary_key => [:user_id, :note_id] do |t|
 
   6       t.references :user, :foreign_key => true, :index => false
 
   7       t.references :note, :foreign_key => true