Hi,

i want to fix a few things in SQL::Translator::Producer::Oracle. If you use DBIC schema to produce Oracle DDL having following schema (that's from MojoMojo):

__PACKAGE__->add_columns(
    ...
    "created",
{ data_type => "BIGINT", is_nullable => 0, size => 100, epoch => 'ctime' },
    ...
);

Using that in combination with S::P::Oracle it will produce:

CREATE TABLE content (
  ...
  created number(100) NOT NULL,
  ...
);

Maximum size of column type number is 38 for oracle. So i want to fix this and probably a few other things. I would love you for getting me a commit bit in sqlfairy svn at sourceforge. My username at sourceforge is plutooth, my CPAN id is PLU.

Thanks,
Johannes

--
Johannes Plunien | mailto:[EMAIL PROTECTED] | http://search.cpan.org/~plu/

Attachment: smime.p7s
Description: S/MIME cryptographic signature

-------------------------------------------------------------------------
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
-- 
sqlfairy-developers mailing list
sqlfairy-developers@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/sqlfairy-developers

Reply via email to