This file is indexed.

/usr/share/doc/php-horde-db/TODO is in php-horde-db 2.3.1-1ubuntu2.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
Migrations
----------

- timestamp-based migrations like rails 2.1:
  http://guides.rubyonrails.org/migrations.html

- replace backend-specific structuredump with a PHP/JSON dump of schema and
  data, including a corresponding importer. A simple YAML/JSON structure that
  represents the PHP objects (TableDefinition, ColumnDefinition, IndexDefinition
  - or alternately writes them out programmatically like a migration script)
  would make it easiest to reconstruct identical tables between multiple
  machines and multiple database types, and a simple JSON encoding of data (a
  single header row, followed by one JSON array per database row per line) would
  take care of most special characters and serialization issues, and allow for
  fast line-by-line reading.

- add convenience methods of calling $t->string('foo'), instead of
  $t->column('string', 'foo'), inside migration scripts. Will need to introspect
  the nativeDatabaseTypes() list from the connection for this.


Dates
-----

- Handle Horde_Date objects in both input/output from Horde_Db.

- what to do about '0000-00-00' with PostgreSQL?

- http://dev.mysql.com/doc/refman/5.1/en/time-zone-support.html



- integer sizing for mysql like the postgres backend does it?

- port updates in schema_definitions.rb and schema_statements.rb

- allow adding multiple indexes (and columns) at once, in an aggregate
  operation. at the abstract level this will just execute the changes one at a
  time; for databases like mysql that can run multiple changes at once, it will,
  achieving much better efficiency.

- rdo: add the ability to load a table once, then use it repeatedly in a
  relationship (or to have it be a static array), instead of joining.

- composite primary key support: what does http://compositekeys.rubyforge.org/
  have that we don't?

- port disable_referential_integrity?

- port query_cache.rb

- Support mysqlnd statistics:
  http://developers.sun.com/databases/articles/mysql_php4.html#7