This branch deals with multiple schemas
[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
0f1f51e0 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
ceb53f72 37 - reduce chances of relname/colname collisions
38 - strip _no, _num, _number, _code etc. from relnames
39 - write a Manual::Intro with info on +column, inflect_singular, config_file,
40 catalyst helper, etc.
41 - add result_roles and schema_roles for use with use_moose=1
7a57810d 42 - generate Schema/ResultBase.pm and Schema/ResultSetBase.pm
1a8fd949 43 - remove additional warnings skip in t/22dump.t for ActivePerl on Win32
b33d5949 44 - make 23dumpmore.t auto cleanup and remove dump warnings
1fe6af07 45 - generate POD for schema class with class list
39d5612f 46 - remove implicit rels from common tests so all tests work on MySQL
39d5612f 47 - server link support for Oracle and MSSQL
c4a69b87 48 - add -I support to dbicdump
16f6b6ac 49
0f1f51e0 50- Relationships
f8457e28 51 - While scanning for many-to-many, scan for implied rels as well (if
52 foo->belongs_to('bar') and baz->belongs_to('bar'), does that impliy
53 foo->might_have('baz') and the reverse?)
a13b2803 54
0f1f51e0 55- Backends
56 - SQLite
57 - table/column comments
58 - introspect on_update/on_delete/is_deferrable
59 - introspect view SQL
60 - MySQL
61 - table/column comments
62 - introspect on_update/on_delete/is_deferrable
63 - introspect view SQL
760fd65c 64 - domains?
0f1f51e0 65 - Pg
66 - introspect on_update/on_delete/is_deferrable
67 - introspect view SQL
760fd65c 68 - domains
0f1f51e0 69 - DB2
0f1f51e0 70 - table/column comments
71 - introspect on_update/on_delete/is_deferrable
72 - introspect view SQL
760fd65c 73 - domains
0f1f51e0 74 - Oracle
0f1f51e0 75 - introspect on_update/on_delete/is_deferrable
76 - introspect view SQL
760fd65c 77 - domains
0f1f51e0 78 - Sybase ASE
79 - table/column comments
80 - introspect on_update/on_delete/is_deferrable
81 - introspect view SQL
760fd65c 82 - domains
0f1f51e0 83 - MSSQL
84 - table/column comments
85 - introspect on_update/on_delete/is_deferrable
86 - introspect view SQL
87 - computed column support
760fd65c 88 - domains
0f1f51e0 89 - Optimization
90 - use one query for whole table instead of query-per-column in _columns_info_for
91 - use placeholders when available
92 - SQLAnywhere
93 - table/column comments
94 - introspect on_update/on_delete/is_deferrable
95 - introspect view SQL
760fd65c 96 - domains
0f1f51e0 97 - Firebird
98 - table/column comments
99 - introspect on_update/on_delete/is_deferrable
100 - introspect view SQL
760fd65c 101 - domains
1b291d2c 102 - Informix
0f23ee97 103 - support opaque types
104 - datetime/interval precision detection
1b291d2c 105 - table/column comments
106 - introspect on_update/on_delete/is_deferrable
107 - introspect view SQL
760fd65c 108 - domains