Move _get_custom_content call close to where it's used.
[dbsrgits/DBIx-Class-Schema-Loader.git] / TODO
CommitLineData
6e95586b 10.05 BLOCKERS
2=============
3
4Fix failures with DBIC trunk
5
6Add backwards-compatibility mode when regenerating a 0.04-generated schema
7
8OTHER STUFF
9===========
16f6b6ac 10
a13b2803 11support multiple/all schemas, instead of just one
12
13support pk/uk/fk info on views, possibly. May or may not be a sane thing to try to do.
92b24d67 14
996be9ee 15Fix up ResultSet Manager / Methods / etc stuff. May require some work in the
16main DBIx::Class first.
16f6b6ac 17
3980d69c 18SQLite needs some heavy refactoring, the subroutines are becoming too complex to understand easily.
16f6b6ac 19
996be9ee 20Refactor RelBuilder so that it doesn't require a live mostly-built
21DBIx::Class::Schema, so that other modules (SQLT) can use it easier. And then
22when/if we get there, break it out as a seperate distribution with a new name.
c2849787 23
89ecd854 24Relationship stuff:
16f6b6ac 25 Re-scan relations/tables after initial relation setup to find ->many_to_many() relations to be set up?
c2849787 26 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 27 ...