wise-coders / dbschema

DbSchema Database Designer
https://dbschema.com
67 stars 3 forks source link

Can't display the table fields #116

Closed max529 closed 8 months ago

max529 commented 8 months ago

I have the current table inside a mariadb instance

CREATE TABLE `core.user` (
  `Id` int(11) NOT NULL AUTO_INCREMENT,
  `Firstname` varchar(255) NOT NULL,
  `Lastname` varchar(255) NOT NULL,
  `Username` varchar(255) NOT NULL,
  `Password` text NOT NULL,
  `Token` varchar(255) NOT NULL,
  `Picture` varchar(255) NOT NULL,
  `CreatedDate` datetime NOT NULL,
  `UpdatedDate` datetime NOT NULL,
  PRIMARY KEY (`Id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci

The parser can load the table but can't load the fields for the table. I think, it's because the table name includes a dot but I'm not sure. I checked the ouput logs but there is no error.

Version

wise-coders commented 8 months ago

You are right, the issue is related to dot in the table name. This is a special case, and it will take some time for us to fix it. You should avoid using dots in the table name.