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