More stuff for TODO
[dbsrgits/DBIx-Class.git] / TODO
CommitLineData
bad808ba 12006-03-25 by mst
2 - Refactor ResultSet::new to be less hairy
3 - we should move the setup of select, as, and from out of here
4 - these should be local rs attrs, not main attrs, and extra joins
5 provided on search should be merged
6 - find a way to un-wantarray search without breaking compat
7 - audit logging component
8 - delay relationship setup if done via ->load_classes
9 - double-sided relationships
10 - incremental deploy
11 - make short form of class specifier in relationships work
2b7a4025 12
132006-01-31 by bluefeet
14 - Create a DBIx::Class::FilterColumn to replace inflate/deflate. This
15 component would provide a new syntax for filtering column update and
16 retrieval through a simple syntax. The syntax would be:
17 __PACKAGE__->add_columns(phone => { set=>sub{ ... }, get=>sub{ ... } });
18 We should still support the old inflate/deflate syntax, but this new
19 way should be recommended.
20
212006-02-07 by JR
22 - Extract DBIC::SQL::Abstract into a separate module for CPAN
23 - Chop PK::Auto::Foo up to have PK::Auto refer to an appropriate
1dd7922b 24 DBIx::Storage::DBI::Foo, which will be loaded on connect from Driver info?
2b7a4025 25 - Add deploy method to Schema, which will create DB tables from Schema, via
1dd7922b 26 SQLT
2b7a4025 27
282006-03-18 by bluefeet
29 - Support table locking.
30
133dd22a 312006-03-21 by bluefeet
32 - When subclassing a dbic class make it so you don't have to do
33 __PACKAGE__->table(__PACKAGE__->table()); for the result set to
34 return the correct object type.
35