Added a TODO for deploy().
[dbsrgits/DBIx-Class.git] / TODO
1
2 2006-03-25 by mst
3   - Refactor ResultSet::new to be less hairy
4     - we should move the setup of select, as, and from out of here
5       - these should be local rs attrs, not main attrs, and extra joins
6         provided on search should be merged
7   - find a way to un-wantarray search without breaking compat
8   - audit logging component
9   - delay relationship setup if done via ->load_classes
10   - double-sided relationships
11   - incremental deploy
12   - make short form of class specifier in relationships work
13
14 2006-01-31 by bluefeet
15  - Create a DBIx::Class::FilterColumn to replace inflate/deflate. This 
16    component would provide a new syntax for filtering column update and 
17    retrieval through a simple syntax. The syntax would be:
18    __PACKAGE__->add_columns(phone => { set=>sub{ ... }, get=>sub{ ... } }); 
19    We should still support the old inflate/deflate syntax, but this new 
20    way should be recommended. 
21
22 2006-02-07 by JR
23  - Extract DBIC::SQL::Abstract into a separate module for CPAN
24  - Chop PK::Auto::Foo up to have PK::Auto refer to an appropriate
25    DBIx::Storage::DBI::Foo, which will be loaded on connect from Driver info?
26  - Add deploy method to Schema, which will create DB tables from Schema, via
27    SQLT
28
29 2006-03-18 by bluefeet
30  - Support table locking.
31
32 2006-03-21 by bluefeet
33  - When subclassing a dbic class make it so you don't have to do 
34    __PACKAGE__->table(__PACKAGE__->table()); for the result set to 
35    return the correct object type.
36
37 2006-03-27 by mst
38  Add the ability for deploy to be given a directory and grab <dbname>.sql 
39  out of there if available. Try SQL::Translator if not. If none of the above, 
40  cry (and die()).  Then you can have a script that pre-gens for all available 
41  SQLT modules so an app can do its own deploy without SQLT on the target 
42  system
43