GitXplorerGitXplorer
a

mysql2pgsql

public
1 stars
0 forks
0 issues

Commits

List of commits on branch master.
Unverified
5e5993d3e7a8fa4cd78be8b6d6dfc7648fc474c2

Add LICENSE

aakuchling committed 12 years ago
Unverified
d41fa59023591f516f1c0216146ec5ae4d9f2bc1

Rough out some data-conversion code; not verified to run

aakuchling committed 14 years ago
Unverified
337529e1a9dacd394d14e26b87a26def8633ec34

Filling out much of the main logic; not verified to run

aakuchling committed 14 years ago
Unverified
8d36beb57c3625e1cec059a77d79f576c324e459

Decision: rework to use optparse, and not use SQLalchemy

aakuchling committed 14 years ago
Unverified
d523ec86f0766918425b1956e52bc9a344cf5a6a

Add .hgignore

aakuchling committed 14 years ago
Unverified
fe519dee41f81593ba7777cbe0bbf9751507800e

Create project

aakuchling committed 14 years ago

README

The README file for this repository.

Remove backquotes around names

Data type changes: bigint(8) -> integer, integer(11) -> integer, double -> double precision, datetime -> timestamp, bigint NOT NULL auto_increment -> bigserial, mediumtext -> text, blob->bytea, enum -> varchar or equivalent.

Change usage of ' to '', or use E'' syntax.

Remove ENGINE=xxx, DEFAULT CHARSET=latin1, AUTO_INCREMENT declarations

Comment out LOCK TABLES, UNLOCK TABLES; KEY idx_xxx in CREATE TABLE.

KEY, UNIQUE KEY declarations need translating

XXX PostgreSQL needs you to remove the trailing commas in CREATE TABLE

XXX need to fix auto_increment

Election.end; 'end' is a reserved keyword.

ProcessorAccount: 'user' is a reserved keyword.

'User' is a reserved keyword.

pleasewait.starttime has 'on update' trigger.