sqldump-to icon indicating copy to clipboard operation
sqldump-to copied to clipboard

truncated type output for schema

Open ppbrown opened this issue 3 years ago • 0 comments

input of mysql dump schema has:

 .....
   `t` double DEFAULT NULL,
  `uuid` text

running it through "sqldump-to -s", generated

  {
    "name": "t",
    "type": "double"
  },
  {
    "name": "uuid",
    "type": "tex"
  }

ppbrown avatar Jan 14 '22 21:01 ppbrown