fix splitting uppercase names
[dbsrgits/DBIx-Class-Schema-Loader.git] / TODO
CommitLineData
0f1f51e0 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
f8457e28 12 - Refactor RelBuilder so that it doesn't require a live mostly-built
13 DBIx::Class::Schema, so that other modules (SQLT) can use it easier. And
14 then when/if we get there, break it out as a seperate distribution with a
15 new name.
0f1f51e0 16 - support for user-defined-types as Schema deploy hooks
f8457e28 17 - finish data_type tests for all DBs (DB2 and Informix left)
0f1f51e0 18 - generate a schema accessor which stores which SQLT type it was loaded from
19 - add a settable 'on-behalf-of' version tag (for catalyst model)
20 - inject a table2moniker function into the schema
21 - support coderef for relationship_attrs
22 - common tests for table/column comments
23 - optimize queries
24 - remove extra select for _filter_tables
bc5afe55 25 - option to promote non-nullable unique constraints to PK (prefer int
26 columns when more than one) (RT#51696)
760fd65c 27 - figure out how to represent Informix 'DATETIME YEAR TO FRACTION(5)' in a
28 way that SQLT will like
29 - support domains (aka custom data types) as a Schema deploy hook
760fd65c 30 - add hashref form of generate_pod to control which POD is generated
f80b0ea7 31 - add hashref form of components to control which components are added to
32 which classes
57665735 33 - add common tests for preserve_case option
57665735 34 - check rel accessors for method conflicts
8e030521 35 - add an option to add extra code to Result classes
16f6b6ac 36
0f1f51e0 37- Relationships
f8457e28 38 - Re-scan relations/tables after initial relation setup to find
39 ->many_to_many() relations to be set up
40 - While scanning for many-to-many, scan for implied rels as well (if
41 foo->belongs_to('bar') and baz->belongs_to('bar'), does that impliy
42 foo->might_have('baz') and the reverse?)
a13b2803 43
0f1f51e0 44- Backends
45 - SQLite
46 - table/column comments
47 - introspect on_update/on_delete/is_deferrable
48 - introspect view SQL
49 - MySQL
50 - table/column comments
51 - introspect on_update/on_delete/is_deferrable
52 - introspect view SQL
760fd65c 53 - domains?
0f1f51e0 54 - Pg
55 - introspect on_update/on_delete/is_deferrable
56 - introspect view SQL
57 - preserve_case mode
760fd65c 58 - domains
0f1f51e0 59 - DB2
60 - data_type tests
61 - table/column comments
62 - introspect on_update/on_delete/is_deferrable
63 - introspect view SQL
64 - preserve_case mode
760fd65c 65 - domains
0f1f51e0 66 - Oracle
0f1f51e0 67 - table/column comments
68 - introspect on_update/on_delete/is_deferrable
69 - introspect view SQL
70 - preserve_case mode
760fd65c 71 - domains
0f1f51e0 72 - Sybase ASE
73 - table/column comments
74 - introspect on_update/on_delete/is_deferrable
75 - introspect view SQL
760fd65c 76 - domains
0f1f51e0 77 - MSSQL
78 - table/column comments
79 - introspect on_update/on_delete/is_deferrable
80 - introspect view SQL
81 - computed column support
760fd65c 82 - domains
0f1f51e0 83 - Optimization
84 - use one query for whole table instead of query-per-column in _columns_info_for
85 - use placeholders when available
86 - SQLAnywhere
87 - table/column comments
88 - introspect on_update/on_delete/is_deferrable
89 - introspect view SQL
760fd65c 90 - domains
0f1f51e0 91 - Firebird
92 - table/column comments
93 - introspect on_update/on_delete/is_deferrable
94 - introspect view SQL
760fd65c 95 - domains
1b291d2c 96 - Informix
97 - data_type tests
98 - preserve_case mode
99 - table/column comments
100 - introspect on_update/on_delete/is_deferrable
101 - introspect view SQL
760fd65c 102 - domains