We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I'm not sure what these should be converted to, but internal isn't a valid type in mysql
$ cat test.pgsql CREATE TABLE public.dcim_device ( id uuid NOT NULL, created date, diff_time interval, ); $ 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, `diff_time` interval, );
The text was updated successfully, but these errors were encountered:
Convert interval to varchar as there is no real alternative dolthub#51
c84aaf0
No branches or pull requests
I'm not sure what these should be converted to, but internal isn't a valid type in mysql
The text was updated successfully, but these errors were encountered: