Firebird: don't rewrite reals as floats
[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
f8457e28 33 - add original => {} to all type info rewrites
57665735 34 - add common tests for preserve_case option
35 - correct handling of CamelCase names with numbers (eg. foo2Bar -> Foo2Bar,
36 foo2_bar)
37 - check rel accessors for method conflicts
8e030521 38 - add an option to add extra code to Result classes
16f6b6ac 39
0f1f51e0 40- Relationships
f8457e28 41 - Re-scan relations/tables after initial relation setup to find
42 ->many_to_many() relations to be set up
43 - While scanning for many-to-many, scan for implied rels as well (if
44 foo->belongs_to('bar') and baz->belongs_to('bar'), does that impliy
45 foo->might_have('baz') and the reverse?)
a13b2803 46
0f1f51e0 47- Backends
48 - SQLite
49 - table/column comments
50 - introspect on_update/on_delete/is_deferrable
51 - introspect view SQL
52 - MySQL
53 - table/column comments
54 - introspect on_update/on_delete/is_deferrable
55 - introspect view SQL
760fd65c 56 - domains?
0f1f51e0 57 - Pg
58 - introspect on_update/on_delete/is_deferrable
59 - introspect view SQL
60 - preserve_case mode
760fd65c 61 - domains
0f1f51e0 62 - DB2
63 - data_type tests
64 - table/column comments
65 - introspect on_update/on_delete/is_deferrable
66 - introspect view SQL
67 - preserve_case mode
760fd65c 68 - domains
0f1f51e0 69 - Oracle
0f1f51e0 70 - table/column comments
71 - introspect on_update/on_delete/is_deferrable
72 - introspect view SQL
73 - preserve_case mode
760fd65c 74 - domains
0f1f51e0 75 - Sybase ASE
76 - table/column comments
77 - introspect on_update/on_delete/is_deferrable
78 - introspect view SQL
760fd65c 79 - domains
0f1f51e0 80 - MSSQL
81 - table/column comments
82 - introspect on_update/on_delete/is_deferrable
83 - introspect view SQL
84 - computed column support
760fd65c 85 - domains
0f1f51e0 86 - Optimization
87 - use one query for whole table instead of query-per-column in _columns_info_for
88 - use placeholders when available
89 - SQLAnywhere
90 - table/column comments
91 - introspect on_update/on_delete/is_deferrable
92 - introspect view SQL
760fd65c 93 - domains
0f1f51e0 94 - Firebird
95 - table/column comments
96 - introspect on_update/on_delete/is_deferrable
97 - introspect view SQL
760fd65c 98 - domains
1b291d2c 99 - Informix
100 - data_type tests
101 - preserve_case mode
102 - table/column comments
103 - introspect on_update/on_delete/is_deferrable
104 - introspect view SQL
760fd65c 105 - domains