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