I have one project in Rails where I used Single Table Inheritance on Users Table, by creating two roles for Users table - 1.Clinician and 2.Patient. The model desc. is below
class Patient < User has_many :clinician_patients has_many :clinicians, through: :clinician_patients end
class Clinician < User has_many :clinician_patients has_many :patients, through: :clinician_patients end
Here I have another table clinician_patients :-
class ClinicianPatient < ActiveRecord::Base belongs_to :clinician belongs_to :patient end
I am new to Prisma and I want to use STI and relationships like Rails in Node using Prisma. How should I use STI in prisma models?