0.03003 fixes for external layered definitions while dumping
[dbsrgits/DBIx-Class-Schema-Loader.git] / TODO
CommitLineData
16f6b6ac 1
996be9ee 2Fix up ResultSet Manager / Methods / etc stuff. May require some work in the
3main DBIx::Class first.
16f6b6ac 4
3980d69c 5SQLite needs some heavy refactoring, the subroutines are becoming too complex to understand easily.
16f6b6ac 6
996be9ee 7Refactor RelBuilder so that it doesn't require a live mostly-built
8DBIx::Class::Schema, so that other modules (SQLT) can use it easier. And then
9when/if we get there, break it out as a seperate distribution with a new name.
c2849787 10
89ecd854 11Relationship stuff:
16f6b6ac 12 If local column is UNIQUE or PK, use has_one() for relation?
13 Re-scan relations/tables after initial relation setup to find ->many_to_many() relations to be set up?
14 Check NULLability of columns involved in the relationship, which might suggest a more optimal non-default -join-type?
c2849787 15 While scanning for many-to-many, scan for implied rels as well? (if foo->belongs_to('bar') and baz->belongs_to('bar'), does that impliy foo->might_have('baz') and the reverse?)
996be9ee 16 ...