Skip to content

Tag: many-to-many

How to add column in ManyToMany Table (Django)

From the example of Django Book, I understand if I create models as following: The Django would create a new table(A_B) beyond Table A, which has three columns: id a_id b_id But now I want to add a new column in the Table A_B, thus would be very easy if I use normal SQL, but now anyone can help me