-
Does Moor support on DELETE CASCADE Constraint? Because if I delete an Element from a Table with Foreign References I receive:
The WorkoutCollections is implemented as following:
The error occurs when I am trying to Delete an Workout Entry from Workouts Table with the workout_id. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
That's interesting. Moor doesn't alter It's interesting that the error is about |
Beta Was this translation helpful? Give feedback.
That's interesting. Moor doesn't alter
customConstraints
in any way, so they should work as you'd expect.It's interesting that the error is about
workoutcollections
not existing. By default, moor would name the tableworkout_collections
. Did you rename the table at some point?