Fix missing semicolons between PostGIS statements
[dbsrgits/SQL-Translator.git] / Changes
1 Changes for SQL::Translator
2
3  * Add support for monotonically increasing SQLite autoincs (GH#47)
4  * Add support for CHECK constraint in SQLite producer (GH#57)
5  * Add support for CHECK constraint in POD producer (GH#63)
6  * Fix forgotten quoting in the MySQL DROP TABLE diff producer (GH#50)
7  * Fix Pg grammar parsing of UUID, time, timetz columns (RT#100196, GH#52)
8  * Add support for USING and WHERE on indexes in PostgreSQL producer
9    and parser (RT#63814, GH#52)
10  * Improve add_trigger consistency between producers (GH#48)
11  * Declare dependencies in deterministic order (RT#102859)
12  * Multiple speedups of naive internal debugging mechanism (GH#54)
13  * Remove dependency on List::MoreUtils ( http://is.gd/lmu_cac_debacle )
14  * Fix parsing of strings with leading whitespace for MySQL, Oracle, PostgreSQL,
15    SQLServer and SQLite
16  * Fix parsing of MySQL column comments (RT#83380)
17  * Fix multi-line comments in YAML, JSON and PostgreSQL producers
18  * Fix identifier quoting in PostgreSQL diff producer
19  * Fix missing semicolons between PostGIS statements
20
21 0.11021 2015-01-29
22
23  * Fix Oracle producer generating an unnecessary / at the end in case there
24    are no triggers
25  * Skip HTML tests if CGI is not installed (RT#98027)
26  * Fix JSON and YAML tests if the defaults have been tweaked (RT#98824)
27  * Fixes for parsing and producing identifiers and values that need
28    quoting and escaping for SQLite, MySQL, PostgreSQL, SQLServer and
29    Oracle (RT#90700, RT#31034)
30  * Add support for ALTER TABLE ... ADD CONSTRAINT to Oracle parser
31  * Add trigger support to Oracle parser (RT#62927)
32  * Fix erroneous PostgreSQL floating point type translations (RT#99725)
33  * Remove executable bit from Parser/JSON.pm (RT#100532)
34  * Update the Free Software Foundation's address (RT#100531)
35  * Provide default index names for SQLite (GH#45)
36  * Fix SQLite diffing on perl 5.8.1
37  * Fix multi-column indexes in Parser::DBI::PostgreSQL
38  * Fix array data types in Parser::PostgreSQL (GH#49)
39  * Fix multidimensional sizes in Parser::PostgreSQL
40
41 0.11020 2014-09-02
42
43  * Fix test failure if Test::PostgreSQL is installed but not working
44
45 0.11019 2014-09-02
46
47  * Add Json and hstore types to Pg Parser (cloudinstustrie)
48  * Fix DROP TABLE in SQL Server Producer
49  * Fix Pg DBI parser test (Dagfinn Ilmari MannsÃ¥ker)
50  * Remove spurious warnings (Matt Phillips, Wallace Reis)
51  * Fix MySQL producer for columns with scalar ref in 'ON UPDATE' (Wallace Reis)
52  * Fix handling of views in MySQL DBI parser
53  * Fix handling of renamed fields in SQLite diff (Peter Mottram)
54  * Check numeric equality of default values in numeric-type fields (Wallace Reis)
55  * Fix handling of renamed fields in renamed tables in Pg diff (Peter Mottram)
56
57 0.11018 2013-10-31 ðŸŽƒ
58
59  * Revert "Fix AUTOINCREMENT in SQLite"
60
61 0.11017 2013-10-30
62
63  * Apply quotes to fix tables that are reserved words, DBI::SQLServer (Jonathan C. Otsuka)
64  * Add DECIMAL_DIGITS to field size for scale info, DBI::SQLServer (Jonathan C. Otsuka)
65  * De-linkify XML namespace in docs (RT#81838)
66  * Allow both single and double quotes for values in MySQL parser
67  * Fix diff for altering two things per column - add ; at the end
68  * Call all diff methods in list context (it can be merged later)
69  * Fix Pg diff issue with drop constraint on primary keys
70  * SQLite support for SET NULL, SET DEFAULT and NO ACTION in FK clauses
71  * Clean up properly after Parser::DBI::PostgreSQL tests
72  * Fix typos in error messages
73  * Add SQL_TINYINT and SQL_BIGINT to the type map in
74    SQL::Translator::Schema::Field
75  * Add JSON parser and producer (Jon Jensen)
76  * Clean up TTSchema doc some (Gavin Shelley)
77  * Fix AUTOINCREMENT in SQLite (Rafael Porres Molina)
78
79 0.11016 2012-10-09
80
81  * Allow passing an arrayref to SQLT->filename (lost in Mooification)
82
83 0.11015 2012-10-05
84
85  * Fix stupid missing version number in SQL::Translator::Schema::Object
86
87 0.11014 2012-10-05
88
89  * Relicense under Perl 5 terms
90
91 0.11013_03 2012-09-25
92
93  * Remove SQL::Translator::Schema::Graph as announced in 0.11011
94  * Remove a number of no longer needed deps
95
96 0.11013_02 2012-09-23
97
98  * Fix missing dep (List::MoreUtils)
99
100 0.11013_01 2012-09-22
101
102  * Convert SQL::Translator, ::Schema and ::Schema::* to Moo
103  * Fix leaks by weakening circular references between schema objects
104
105 0.11013 2012-09-22
106
107  * Make MySQL producer add NULL after every nullable field, conforming to SQL
108    standard, and avoiding MySQL bugs
109
110 0.11012 2012-07-02
111
112  * Fix/update quoting in PostgreSQL producer
113  * Add missing quote function to SQLServer producer
114  * Fix incorrect Parser::DBI documentation (RT#60878)
115
116 0.11011 2012-05-09
117
118 [ INCOMPATIBLE CHANGES ]
119
120  * SQLT no longer supports setting separate conflicting values for the now
121    deprecated 'quote_table_names' and 'quote_field_names'. Instead their values
122    are proxied to the new 'quote_identifiers'. If 'quote_identifiers' is
123    supplied, the legacy settings are ignored (with a warning). If nothing is
124    specified the default is TRUE as before. If only one is specified - default
125    to its value for everything, and if both are specified with a conflicting
126    value an exception is thrown.
127
128  * Partial quoting support has been added in SQLite. It is currently disabled by
129    default, you need to request is explicitly with quote_identifiers => 1. In a
130    future version of SQL::Translator *THIS DEFAULT BEHAVIOR WILL CHANGE*.
131    If you do NOT WANT quoting, set quote_identifiers to a false value to
132    protect yourself from changes in a future release.
133
134  * Bump the default MySQL parser version to MySQL 4.0
135
136 [ OTHER CHANGES ]
137
138  * script/sqlt-graph now accepts a --trace option
139  * Fixes to SQLite foreign keys production (patch from Johan Viklund)
140    closes RT#16412, RT#44769
141  * ON DELETE/UPDATE actions for SQLite (patch from Lukas Thiemeier)
142    closes RT#70734, RT#71283, RT#70378
143  * Fix data preservation on SQLite diffs involving adding/dropping columns
144  * Support for triggers in PostgreSQL producer and parser
145  * Correct Data Type in SQLT::Parser::DBI::PostgreSQL (patch from Andrew Pam)
146  * Fix index issue in SQLT::Parser::DBI::PostgreSQL
147  * Add column and table comments in SQLT::Parser::DBI::PostgreSQL(patch from Andrew Pam)
148  * Stop the DBI parser from disconnecting externally supplied DBI handles (RT#35868)
149  * Fixed alter_drop_constraint for foreign keys and applying multiple changes
150    via alter_field to a column in Postgres Producer
151  * Added a working mechanism for naming foreign keys in the PostgreSQL producer
152  * Fix PostgreSQL ignoring default values with specified data type
153  * Fix PostgreSQL parser support for (N)::int defaults (patch by Tina Müller)
154  * Fix possible name duplication in SQLlite producer
155  * Oracle does not accept ON DELETE/UPDATE RESTRICT (though it is the actual default)
156    fix by not adding the ON DELETE/UPDATE clause at all
157  * Changed dependency on Digest::SHA1 to the core-bundled Digest::SHA (RT#67989)
158  * Support for double quoted and bit strings as default values in MySQL parser
159  * Improved VIEW support in MySQL parser
160  * Proper handling of CURRENT_TIMESTAMP default values in MySQL parser (RT#65844)
161  * Check in MySQL parser to avoid trying to parse a table defined twice in the same
162    file as indices (and probably other things) get messed up
163  * Workaround for some MySQL quirks on primary key definitions
164  * Fix dropping primary keys in MySQL diffs (RT#62250, patch from Nick Bertrand)
165  * MySQL producer does not attempt to write out non-existent unique constraint names
166  * MySQL parser correctly differentiates between signed and unsigned integer column
167    display sizes
168  * Replace Class::Accessor::Fast dependency with already-included Moo
169  * Entire codebase is now free of tabs and trailing whitespace
170  * Spellfixes (RT#68912)
171  * Fix Diagram Producer POD (RT#71397, RT#71398)
172  * Fix Diagram Producer to use correct binmode on output (RT#71399)
173  * Fix ignored option to script/sqlt-diagram (RT#5992)
174  * Fix t/17sqlfxml-producer.t failures due to whitespace differences introduced by
175    environment config snippets (RT#70786)
176  * Fix assembly of Table objects with numbered columns being added out of order
177    (RT#74771) (based on patch from Jonathan Otsuka)
178  * Fix syntax error in SQL::Translator::Producer::Latex (RT#74953)
179  * Deprecate SQL::Translator::Schema::Graph and the as_graph() schema method
180  * Bump minimum supported perl version to 5.8.1 (mostly due to Moo)
181
182 0.11010 2011-10-05
183
184  * Add "if exists" to drop view statements in Pg.
185
186 0.11009 2011-09-02
187
188  * Fix MySQL producer to properly quote all table names on output (patch from geistteufel)
189
190 0.11008 2011-05-04
191
192  * Correctly create and parse FK constraints in SQLite
193  * Correct postgis geography type insertion and linebreak fix for multiple geometry/geography columns
194  * made PostgreSQL producer consistent with other producers in terms of
195    quoting and allowing functions in constraints and indices
196  * Add distinction of autoinc and regular primary keys to the GraphViz producer
197  * Fix odd invocation of Test::More::pass() in t/36-filters.t (RT#64728)
198  * Quote everything in SQL Server
199  * Turn off constraints before dropping tables in SQL Server
200  * Make true unique constraints if needed in SQL Server
201  * Fixed Producer::PostgresSQL to output array type after type size,
202    i.e. varchar(64)[] rather than varchar[](64)
203
204 0.11007 2010-11-30
205
206  * Fix POD typo in SQL/Translator/Schema/Trigger.pm
207  * Add explicit Scalar::Util to the deplist for really old perls
208  * Add support for PostGIS Geometry and Geography data types in the Pg producer
209  * Some minor fixes to squash warnings on new perls
210  * Support a custom_type_name hint when creating enum types in PostgreSQL
211  * Fix sqlt options/pod mismatch (RT#58318)
212  * Oracle Producer multicolumn constraint support
213  * Add support for triggers in the MySQL producer
214  * Fix unstable order of View's in MySQL parser
215
216 0.11006 2010-06-03
217
218  * Fix Producer::Oracle varchar2 without size def (ORA-00906: missing right
219    parenthesis)
220  * Fix Producer::Oracle translate float and double to float instead of number
221  * Fix Producer::Oracle generation of too long unique constraint names
222  * Fix Producer::SQLite when generating VIEWs with add_drop_table => 1
223  * Fix Producer::MySQL not quoting index names when requested (RT#56173)
224  * Fix Producer::MySQL wrapping extra ()s around VIEW SELECT-ors (RT#56419)
225  * Fix Field::default_value to behave like a real accessor (allow undef as
226    an unsetting argument)
227  * Fix Mysql/Pg/SQLite/MSSQL producers to properly *not* quote numeric default
228    values (RT#57059)
229  * Producer::Oracle tests now use Test::Differences
230  * Prettify output of SQLite producer (less bogus newlines)
231  * Augment SQLite and Pg producers to accept a perl-formatted (%d.%03d%03d)
232    and regular no-leading-zero (X.X.X) *_version producer args
233
234 0.11005 2010-02-24
235
236  * Fix Parser::DBI::Oracle reading too many tables (RT#49413)
237  * Fix Parser::MySQL tripping up on PRIMARY KEY ... USING (currently value is ignored) (RT#50468)
238  * Fix runaway debug trace (RT#52276)
239  * Fix Parser::PostgreSQL choking on commit; statements in DDL (#RT52277)
240  * Producer::Oracle now respects quote_field|table_names, and
241    no longer does name munging of reserved table names
242  * Producer::Oracle now correctly outputs databse-unique index names
243
244 0.11004 2010-02-14
245
246  * Fix PG producer numeric precision regression (RT#49301)
247  * Add DB2 producer numeric/decimal precision output
248  * Fix Oracle producer creating numeric precision statements that the test case expects (no whitespace)
249  * Add Oracle producer creating drop view statements like PG producer does
250  * Fix SQL::Translator::Diff to use producer_args instead of producer_options
251
252 0.11003 2009-09-28
253
254  * Pg parser fixes to deal properly with MATCH <type>
255  * Pg parser fixes to parse timestamp attributes correctly
256  * Fix broken default detection in script/sqlt (RT#27438)
257  * Fix dependency issues with LibXML and TT
258
259 0.11002 2009-08-30
260
261  * Depend on fixed Parse::RecDescent
262  * Added skip-tables and skip-tables-like options to Diagram
263
264 0.11001 2009-08-18
265
266  * Removed last use of Readonly
267  * Adjusted YAML dependency
268
269 0.11000 2009-08-18
270
271  * Re-add version numbers to files, else cpan's "upgrade" gets very confused
272  * Replaced code using Readonly, since most of the rest uses constant, and thats already a dep
273  * Moved YAML and XML::LibXML back to recommends, the tests for both now skip if not installed
274  * Bumped to 0.11000 to supercede 0.10 which has incorrect numbering scheme
275
276 0.10 2009-08-13
277
278  * Resolved the following RT bugs (thanks to everyone for reporting!):
279    - 25791   does not recognize PostgreSQL ON_ERROR_STOP
280    - 29265   sqlt-diagram: --natural-join needs Graph::Directed
281    - 37814   SQLite translator failing to parse schema
282    - 42548   Producer::PostgreSQL incorrectly inserts the size in
283              'time(stamp)? with(out) time zone' fields
284    - 43173   SQL::Translator::Parser without versionnumber - will install
285              old 0.09002
286    - 46805   (No subject)
287    - 47026   META.yml is not packaged due to MANIFEST.SKIP (easyfix)
288    - 32130   Move from XML::XPath to XML::LibXML::XPathContext
289    - 22261   MySQL parse
290    - 13915   missing optional prerequisite cause make test to fail
291    - 8847    Diagram.pm: BINMODE missing in printing of graphic file.
292    - 21065   GraphViz producer fails on tables named 'node'
293    - 35448   Producer::PostgreSQL types without size
294    - 22026   sqlt-diagram uses -f arg twice
295    - 47897   [PATCH] Fix uninitialized value within @_ in (uc|lc)
296    - 47668   Mysql Parser doesn't recognize key types
297    - 46448   sqlt-graph errors out on MySQL DDL with btree keys
298    - 47176   Add Foreign Key support to Parser::DBI::PostgreSQL.pm
299    - 48025   MySQL Producer: Case inconsistency between elements in
300              @no_length_attr and $data_type
301    - 48569   sqlt-diagram fails to load SQLite schema
302    - 48596   SQL::Translator::Diff::schema_diff should produce a list in
303              list context
304    - 44907   SQL::Translator::Producer::PostgreSQL produce() in list context
305              should return a list of statements
306
307 0.09007 2009-06-25
308
309  * Fixed Pg parser - caching the compiled P::RD schema is a *very*
310    bad idea
311  * Fix MSSQL handling of ON UPDATE/DELETE RESTRICT
312  * Delay MSSQL FK constraint deployment until after all CREATE TABLE
313    statements
314  * Coerce other engine's bytea/blob/clob datatypes to VarBinary
315
316 0.09006 2009-06-10
317
318  * Multiple test and dependency adhustments to make smokers happy
319  * Fix YAML producer wrt extra attribute
320  * Added support for "time(stamp) (p) with time zone" for Pg producer (mo)
321
322 0.09005 2009-06-08
323
324  * Add parser support for MySQL default values with a single quote
325  * Properly quote absolute table names in the MySQL producer
326  * Added CREATE VIEW subrules for mysql parser (wreis)
327  * Many fixes to code and tests for trigger's "database_events"
328  * Added semi-colon for (DROP|CREATE) TYPE statements in the Pg producer (wreis)
329  * ALTER TABLE/ALTER COLUMN/DROP DEFAULT support in Pg producer (mo)
330  * XML parser support for multi-event triggers
331  * SQLite producer support for multi-event triggers
332  * XML parser switched from XML::XPath to XML::LibXML
333  * Pg producer ALTER TABLE/COLUMN and DROP DEFAULT support
334  * MySQL producer skips length attribute for columns which do not support that
335    attribute. Currently following column types are added to that list:
336    date time timestamp datetime year
337  * Switch to Module::Install (mandates minimum perl 5.005)
338  * Major cleanup of GraphViz proucer
339  * Massive amount of fixes to SQLite/Pg/Mysql/MSSQL parsers/producers
340    Fix most of the problems uncovered by the roundtrip test framework
341    Some highlights:
342     - Rewind exhausted globs before attempting a read
343     - Do not add xml comment header if no_comments is set
344     - table/field counts are held per schema object, not globally
345     - no more variable table and column names in SQLite and MSSQL
346     - VIEW support for Pg parser, also some cleanups
347     - The way we generate Pg create view statements was not standards compliant
348       (per RhodiumToad in #postgresql)
349     - Disable MSSQL view/procedure production - they never worked in the first place
350     - SQLite/MSSQL improvements:
351       - Support parsing of all DROP clauses
352       - Support parsing of field-level comments
353       - When producing do not append table names to constraint/index names
354
355 0.09004 2009-02-13
356
357  * Add support for temporary tables in Pg (nachos)
358  * Create Trigger support for SQLite
359  * GraphViz producer improvements
360
361 0.09003 2009-02-07
362
363  * <BORKED RELEASE DELETED OFF CPAN>
364
365 0.09002 2008-12-05
366
367  * parsing MySQL CURRENT_TIMESTAMP as scalar ref so it can be produced without
368    quotes (jgoulah)
369  * Add ignore_opts parser arg (to ignore table options) in Parser::MySQL (jgoulah)
370  * Skip tests for buggy Spreadsheet::ParseExcel versions (rbo)
371  * Add support for skip tables parser arg in Parser::DBI::MySQL (jgoulah)
372  * Changed behaviour of ::Producer::Oracle when returning an array of statements
373    to make it compatible to DBI->do()
374  * Fixed a few bugs in ::Producer::Oracle
375  * Applied patch from jgoulah to support mysql's MERGE option
376  * Applied patch from rbo to add support of multiple database events on a trigger
377  * Applied patch from lukes to allow drop if exists in sqlite producer, with
378    version >= 3.3
379  * Applied patch from rjbs with minor changes, now we support scalar refs in
380    default values!
381  * Fixed SQLite producer to end index statements in newlines, in scalar context
382  * Decreed that all list context statements shall not end in ; or ;\n
383  * Fixed SQLite, Diff and MySQL producers to agree with Decree.
384  * Added support for CREATE VIEW + tests in the Pg producer (wreis)
385  * Added support for CREATE VIEW + tests in the sqlite producer (groditi)
386  * Added proper argument parsing and documentation to MySQL Parser and
387    Producer (ribasushi)
388  * Using DROP VIEW instead of OR REPLACE clause in the Pg producer, as replace
389    only allows replacement with identical set of columns (wreis)
390  * Added support for DROP VIEW and fixed CREATE VIEW statement in the sqlite
391    producer (wreis)
392  * Removed source_db and target_db accessors from Diff (throwback to old version,
393    only output_db is used)
394  * Support for longer varchar fields in MySQL
395
396 0.09001 2008-08-19
397
398  * Added support for CREATE VIEW + tests in the mysql producer (groditi)
399  * Added support for SET fields in the mysql producer + test (groditi)
400  * Added support for proper booleans in the mysql producer, when a mysql version
401    of at least 4.x is supplied
402  * Added support for proper enums under pg (as of 8.3), with pg version check,
403    and deferrable constraints
404  * Added support to truncate long constraint and index names in the mysql
405    producer, because of a change to DBIx::Class to produce such long names in
406    some cases.
407
408 0.09000 2008-02-25
409
410  * Fix Pg produces idea of which field types need a size param (wreis)
411  * Add support for COLLATE table option to MySQL parser
412  * Allow DEFAULT CHARACTER SET without '=' (as produced by mysqldump)
413
414 0.0899_02 2008-01-29
415
416  * Major refactoring of SQL::Translator::Diff again:
417  * Diff is no longer one huge monolithic function.
418  * Added more tests for diff
419  * When producing diffs for MySQL you will (by default) get single alter
420    statements per table
421  * SQLite can also do remove columns (by creating a temp table as shown in
422    http://sqlite.org/faq.html#q11
423  * Columns can be renamed if the new schema is from a form that can have metadata
424    (which is pretty much anything but an SQL file.) It does this by looking at
425    renamed_from in the $field->extra
426  * Updated Oracle and Postgres producers
427  * More tests!
428
429 0.0899_01 2007-10-21
430
431  * SQL::Translator::Diff now uses the ::Producer modules to create diffs
432    This *will* break back-compatibility
433    Use sqlt-diff-old for the previous one, and fix producers!
434
435 0.08001 2007-09-26
436
437  * Patched to ignore all TT versions >= 2.15 until TT is fixed :(
438
439 0.08 2006-12-07
440
441  * Patched 18ttschema-producer.t and 33tt-table-producter.t to skip on TT 2.15,
442    thanks Ash!
443
444 0.08_04 2006-11-10
445
446  * Patched MySQL producer to name constraints sanely, thanks Ash
447  * Added patch to Producer::DB2 to avoid dependency issues with foreign keys
448  * Added patch to remove single quotes for numeric default values in Producer::DB2
449  * Fixed Parser::SQLite to require a semicolon after a create trigger statement
450  * Added patch from avinash to add CASCADE to pg table drops
451
452 0.08_03
453
454  * Added patch to use default values for Pg timestamp fields
455
456 0.08_02    2006-11-03
457
458  * Added patch from Ash to separate DROP statements in mysql producer in
459    list-context
460  * Fixed up SQLites usage of no-comments
461
462 0.08_01    2006-07-23
463
464  * Made Trigger check that a give table exists in on_table - castaway
465  * Split some producers (DB2, MySQL, SQLite, PostgreSQL) into sub methods (others
466    to follow) - castaway
467  * Add alter_* methods to some Producers and docs to Producer.pm (for use by Diff
468    later) - castaway
469  * Made changes to allow producers to return a list of statements - castaway
470  * Split sqlt-diff into script and module - castaway
471  * Added quote_table_names and quote_field_names patch (omega, zamolxes) - castaway
472  * Added DB2 Producer - castaway
473  * Added mysql_character_set for 4.1+ -mda
474  * New filters, Names and Globals. -mda
475  * Added the initial work on a template based Dia UML producer. -mda
476
477 0.07    2005-06-10
478
479  *   YAML parser supports extra attributes on tables.
480  *   All schema objects now support the extra attribute, so can
481      have arbitary name/value data attached to them.
482  *   Refactoring: Added SQL::Translator::Schema::Object - base
483      class for all Schema objects.
484  *   Changes to MySQL Parser (Dave Howorth)
485     - ignore INSERT statements
486     - permit ALTER TABLE ADD FOREIGN KEY
487     - allow trailing comma on last field in CREATE statements
488     - collect the database name
489  *   TTSchema Producer
490     - Can pass extra variables using tt_vars producer arg.
491     - Can pass extra config using tt_conf producer arg.
492     - Variables and config can be passed on the command line
493       with --tt-var and --tt-conf options to sqlt.
494  *   Added schema filters.
495  *   MySQL Producer
496     - Added 'mysql_table_type' extra attribute on tables.
497     - Works out InnoDB tables from constraints.
498     - mysql_charset and mysql_collate extra attributes for tables and fiels.
499
500 0.06    2004-05-13
501
502  *   Added SQL::Translator::Manual
503  *   Installation process now uses Module::Build
504  *   Added new "Dumper" producer
505  *   Changed the native SQL Fairy XML format to a fixed mapping.
506      *NB:* You should convert your existing XML schema. See the
507      SQL::Translator::Parser::XML::SQLFairy docs.
508  *   Added producers: TT::Base and TT::Table.
509
510 0.05    2004-02-27
511
512  *   Added "COMMENT ON *" syntax to PostgreSQL parser
513  *   Some fixes to Oracle parser as reported by Gail Binkley
514  *   Added support in PostgreSQL parser for all "ALTER TABLE" statements
515  *   Now distributing sqlt-diff script as it's pretty usable
516  *   Added new options to sqlt-graph and GraphViz producer (Dave Cash)
517
518 0.04    2003-11-07
519
520  *   Increased version of Constants module to 1.41 to avoid a problem
521      where 0.02 has 1.4 of that file and 0.03 had 1.06 which confused
522      CPAN
523  *   Hard-coded all the PREREQ_PM modules in Makefile.PL (rather than
524      setting them dynamically) so that automated tests would pass
525
526 0.03    2003-11-06
527
528  *   Added parsers: XML::SQLFairy, Sybase, SQLite, DBI-MySQL,
529      DBI-PostgreSQL, DBI-SQLite, DBI-Sybase, Storable, YAML
530  *   Added producers: XML::SQLFairy, TTSchema, Storable, YAML
531  *   HTML producer now uses stylesheets to allow easy customization of colors
532  *   Many bug fixes to most every module
533  *   Added "sqlt-dumper" script to help create a script for dumping
534      a database a la "mysqldump"
535  *   Reversed the arrowheads on the graphical producers to show the
536      relationships in a more standard way
537  *   Changes all included script names to start with "sqlt"
538  *   Added capturing and printing most embedded table and field comments
539
540 0.02    2003-06-17
541
542  *   Added parsers for Excel and Oracle
543  *   Removed Sybase parser because it didn't actually work
544  *   Added ClassDBI, Diagram, GraphViz, HTML, POD, SQLite, Sybase producers
545  *   Added Schema classes to represent schema as objects
546  *   Removed "Raw" producer in favor of the Schema classes
547  *   Removed "Validator" class as the Schema classes validate themselves
548  *   Improved all existing parsers and producers, expanding them to
549      handle foreign keys much better, produce better output, etc.
550  *   Added sqlt-diagram.pl and sqlt-graphviz.pl as CLI frontends to the
551      graphical producers
552  *   Added sql_translator.cgi as a web-form frontend to graphical producers
553  *   Expanded test suite
554
555 0.01    2003-02-27
556
557  *   Added parsers: XML::SQLFairy, Sybase, SQLite, DBI-MySQL,
558      DBI-PostgreSQL, DBI-SQLite, DBI-Sybase, Storable, YAML
559  *   Added producers: XML::SQLFairy, TTSchema, Storable, YAML
560  *   HTML producer now uses stylesheets to allow easy customization of colors
561  *   Many bug fixes to most every module
562  *   Added "sqlt-dumper" script to help create a script for dumping
563      a database a la "mysqldump"
564  *   Reversed the arrowheads on the graphical producers to show the
565      relationships in a more standard way
566  *   Changes all included script names to start with "sqlt"
567  *   Added capturing and printing most embedded table and field comments