class CreateNotificationUsers < ActiveRecord::Migration def change create_table :notification_users do |t| t.boolean :seen t.boolean :responded end add_reference :notification_users, :notification, index: true add_reference :notification_users, :user, index: true end end