Hi Everyone,
I'm having an issue with the establishment of a many-to-many relationship in my schema.cds. I'm getting the following error in the entity table called CCA_membership
[ERROR] in cds.deploy(): SQLITE_ERROR: table CCA_membership has no column named student in:
INSERT INTO CCA_membership ( student, cca, position , createdAt, createdBy, modifiedAt, modifiedBy ) VALUES ( ?, ?, ?, ?, ?, ? )
Query {
INSERT: {
into: 'CCA_membership',
columns: [ 'student', 'cca', 'position' ],
rows: [ [ '1', '1' ], [ '1', '2' ], [ '2', '1' ], [ '2', '2' ] ]
}
}<br>