You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
$ cat test.pgsql
CREATE TABLE public.dcim_device (
id uuid NOT NULL,
created date,
serial character varying(255) NOT NULL,
);
$ perl pg2mysql.pl < test.pgsql
--
-- Generated by pg2mysql
--
set foreign_key_checks = off;
--
DROP DATABASE IF EXISTS public;
CREATE DATABASE public;
CREATE TABLE public.dcim_device (
`id` varchar(36) NOT NULL,
`created` date,
`integer` auto_increment varchar(255) NOT NULL,
);
The text was updated successfully, but these errors were encountered:
QuentiumYT
added a commit
to Quentium-Forks/pg2mysql
that referenced
this issue
Oct 6, 2023
Likely field name serial is being treated as if it's a serial type https://github.com/dolthub/pg2mysql/blob/main/pg2mysql.pl#L167
The text was updated successfully, but these errors were encountered: