In Postmodern CL, what: col-type to use for the Many to Many field?

When defining a database access object to use in cl-postmodern, what should be: col-type for the Many to Many?

+6
lisp postgresql common-lisp
source share
2 answers

The answer is that for the ManyToMany field (as in Django) does not exist: col-type, because the many-many relationship is implemented by creating a new table that Postmodern should reference. This is part of the object's relational magic that Postmodern does not provide.

+3
source share

Without looking at the code, how about the whole?

0
source share

All Articles