HI Laz!

Quoting "Laz C. Peterson" <l...@paravis.net>:

I tested out converting the PostgreSQL database to MySQL, but found some issues already. Seems that some of the tables (certificates for example) are given a very large size in PostgreSQL, where as in MySQL they are capped at 255.

really?

CREATE TABLE certificates (
    id bigint NOT NULL,
    notbefore timestamp without time zone,
    notafter timestamp without time zone,
    issuer text,
    issuerfriendly text,
    serial character varying(1024),
    subjectkeyidentifier text,
    subject text,
    subjectfriendly text,
    certificate bytea,
    thumbprint character varying(255),
    certpath bytea,
    certpathtype character varying(255),
    creationdate timestamp without time zone,
    datepathupdated timestamp without time zone,
    keyalias character varying(1024),
    storename character varying(255)
);

How did you made your database dump from your postgresql?


ttyl
Django
--
http://dokuwiki.nausch.org
http://wetterstation-pliening.info
http://ebersberger-liedersammlung.de

_______________________________________________
Users mailing list
Users@lists.djigzo.com
https://lists.djigzo.com/lists/listinfo/users

Reply via email to