TODO updated
[dbsrgits/DBIx-Class-Schema-Loader.git] / TODO
1
2 immediate stuff for 0.04:
3 --------------------------
4
5 dump_to_dir needs to delimit its output so that it can update on overwrite without killing added things
6
7 avinash240 wants a rescan method to pick up new tables at runtime
8
9 -------
10
11 support multiple/all schemas, instead of just one
12
13 support pk/uk/fk info on views, possibly.  May or may not be a sane thing to try to do.
14
15 Fix up ResultSet Manager / Methods / etc stuff.  May require some work in the
16 main DBIx::Class first.
17
18 SQLite needs some heavy refactoring, the subroutines are becoming too complex to understand easily.
19
20 Refactor RelBuilder so that it doesn't require a live mostly-built
21 DBIx::Class::Schema, so that other modules (SQLT) can use it easier.  And then
22 when/if we get there, break it out as a seperate distribution with a new name.
23
24 Relationship stuff:
25    If local column is UNIQUE or PK, use has_one() for relation?
26    Re-scan relations/tables after initial relation setup to find ->many_to_many() relations to be set up?
27    Check NULLability of columns involved in the relationship, which might suggest a more optimal non-default -join-type?
28    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?)
29    ...