multi db_schema support
[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
38591adb 5 - better avoidance of column and relationship accessor collisions
0f1f51e0 6 - encode loader options in Schema.pm
7 - introspect on_update/on_delete/is_deferrable
0f1f51e0 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
0f1f51e0 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
bc5afe55 24 - option to promote non-nullable unique constraints to PK (prefer int
25 columns when more than one) (RT#51696)
760fd65c 26 - figure out how to represent Informix 'DATETIME YEAR TO FRACTION(5)' in a
27 way that SQLT will like
28 - support domains (aka custom data types) as a Schema deploy hook
760fd65c 29 - add hashref form of generate_pod to control which POD is generated
f80b0ea7 30 - add hashref form of components to control which components are added to
31 which classes
57665735 32 - check rel accessors for method conflicts
69219349 33 - add an option to add extra code to Result classes (maybe...)
df55c5fa 34 - redo in-memory schema as an @INC coderef rather than temp files
0b00b9ed 35 - add option to filter out views
7640ef4b 36 - support columns with names like "ro'd p/n" in MSSQL
a1935f36 37 - automatic preserve_case detection
ceb53f72 38 - reduce chances of relname/colname collisions
39 - strip _no, _num, _number, _code etc. from relnames
40 - write a Manual::Intro with info on +column, inflect_singular, config_file,
41 catalyst helper, etc.
42 - add result_roles and schema_roles for use with use_moose=1
7a57810d 43 - generate Schema/ResultBase.pm and Schema/ResultSetBase.pm
1a8fd949 44 - remove additional warnings skip in t/22dump.t for ActivePerl on Win32
b33d5949 45 - make 23dumpmore.t auto cleanup and remove dump warnings
1fe6af07 46 - generate POD for schema class with class list
39d5612f 47 - remove implicit rels from common tests so all tests work on MySQL
48 - sort unique keys by name
49 - server link support for Oracle and MSSQL
c4a69b87 50 - add -I support to dbicdump
16f6b6ac 51
0f1f51e0 52- Relationships
f8457e28 53 - Re-scan relations/tables after initial relation setup to find
54 ->many_to_many() relations to be set up
55 - While scanning for many-to-many, scan for implied rels as well (if
56 foo->belongs_to('bar') and baz->belongs_to('bar'), does that impliy
57 foo->might_have('baz') and the reverse?)
a13b2803 58
0f1f51e0 59- Backends
60 - SQLite
61 - table/column comments
62 - introspect on_update/on_delete/is_deferrable
63 - introspect view SQL
64 - MySQL
65 - table/column comments
66 - introspect on_update/on_delete/is_deferrable
67 - introspect view SQL
760fd65c 68 - domains?
0f1f51e0 69 - Pg
70 - introspect on_update/on_delete/is_deferrable
71 - introspect view SQL
760fd65c 72 - domains
0f1f51e0 73 - DB2
0f1f51e0 74 - table/column comments
75 - introspect on_update/on_delete/is_deferrable
76 - introspect view SQL
760fd65c 77 - domains
0f1f51e0 78 - Oracle
0f1f51e0 79 - introspect on_update/on_delete/is_deferrable
80 - introspect view SQL
760fd65c 81 - domains
0f1f51e0 82 - Sybase ASE
83 - table/column comments
84 - introspect on_update/on_delete/is_deferrable
85 - introspect view SQL
760fd65c 86 - domains
0f1f51e0 87 - MSSQL
88 - table/column comments
89 - introspect on_update/on_delete/is_deferrable
90 - introspect view SQL
91 - computed column support
760fd65c 92 - domains
0f1f51e0 93 - Optimization
94 - use one query for whole table instead of query-per-column in _columns_info_for
95 - use placeholders when available
96 - SQLAnywhere
97 - table/column comments
98 - introspect on_update/on_delete/is_deferrable
99 - introspect view SQL
760fd65c 100 - domains
0f1f51e0 101 - Firebird
102 - table/column comments
103 - introspect on_update/on_delete/is_deferrable
104 - introspect view SQL
760fd65c 105 - domains
1b291d2c 106 - Informix
0f23ee97 107 - support opaque types
108 - datetime/interval precision detection
1b291d2c 109 - table/column comments
110 - introspect on_update/on_delete/is_deferrable
111 - introspect view SQL
760fd65c 112 - domains