rewrite TODO
[dbsrgits/DBIx-Class-Schema-Loader.git] / TODO
1 - General
2   - High Priority
3     - clean out RT queue
4     - introspect views and make proper ResultSource::View classes with defining SQL
5     - encode loader options in Schema.pm
6     - introspect on_update/on_delete/is_deferrable
7     - preserve_case mode for remaining backends
8   - Low Priority
9     - support multiple/all schemas, instead of just one
10     - support pk/uk/fk info on views, possibly (materialized views?)
11     - remove deprecated ResultSetManager stuff, rewrite using current features
12     - Refactor RelBuilder so that it doesn't require a live mostly-built DBIx::Class::Schema, so that other modules (SQLT) can use it easier.  And then when/if we get there, break it out as a seperate distribution with a new name.
13     - support for user-defined-types as Schema deploy hooks
14     - normalize float/real/double data types in a most cross-deployment friendly fashion, using float(25) as the double boundary where possible
15     - finish data_type tests for all DBs (DB2 and Oracle left)
16     - support for Informix
17     - generate a schema accessor which stores which SQLT type it was loaded from
18     - add a settable 'on-behalf-of' version tag (for catalyst model)
19     - inject a table2moniker function into the schema
20     - support coderef for relationship_attrs
21     - common tests for table/column comments
22     - optimize queries
23     - remove extra select for _filter_tables
24
25 - Relationships
26    - Re-scan relations/tables after initial relation setup to find ->many_to_many() relations to be set up
27    - 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?)
28
29 - Backends
30   - SQLite
31     - table/column comments
32     - introspect on_update/on_delete/is_deferrable
33     - introspect view SQL
34   - MySQL
35     - table/column comments
36     - introspect on_update/on_delete/is_deferrable
37     - introspect view SQL
38   - Pg
39     - introspect on_update/on_delete/is_deferrable
40     - introspect view SQL
41     - preserve_case mode
42   - DB2
43     - data_type tests
44     - table/column comments
45     - introspect on_update/on_delete/is_deferrable
46     - introspect view SQL
47     - preserve_case mode
48   - Oracle
49     - data_type tests
50     - table/column comments
51     - introspect on_update/on_delete/is_deferrable
52     - introspect view SQL
53     - preserve_case mode
54   - Sybase ASE
55     - table/column comments
56     - introspect on_update/on_delete/is_deferrable
57     - introspect view SQL
58   - MSSQL
59     - table/column comments
60     - introspect on_update/on_delete/is_deferrable
61     - introspect view SQL
62     - computed column support
63     - Optimization
64       - use one query for whole table instead of query-per-column in _columns_info_for
65       - use placeholders when available
66   - SQLAnywhere
67     - table/column comments
68     - introspect on_update/on_delete/is_deferrable
69     - introspect view SQL
70     - preserve_case mode
71   - Firebird
72     - table/column comments
73     - introspect on_update/on_delete/is_deferrable
74     - introspect view SQL