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