Lucidchart is a tool for drawing diagrams.
There is a lot more to data modeling than drawing diagrams.
It took me less than 30 minutes to make the attached diagrams using the object-role modeling tool called NORMA. This included choosing the datatypes that you can see in the logical model.
Once I had made the subtype diagram in ORM, it took less than one second to generate the logical relational diagram shown to the right of the ORM subtype diagram.
And with a few more mouse-clicks I could generate the DDL and create a database in MySQL, SQL Server and similar RDBMS's.
In contrast, trying to do this with drawing tools like Lucidchart and Visio takes much longer and achieves much less.

And this is the MySQL DDL which took a few seconds to generate.
CREATE TABLE Supertype
(
supertypeNr INT NOT NULL,
superProperty1 DECIMAL(6,2) NOT NULL,
superProperty2 DATETIME NOT NULL,
supertypeName CHAR(63) NOT NULL,
CONSTRAINT Supertype_PK PRIMARY KEY(supertypeNr)
);
CREATE TABLE SubType1
(
subType1Nr INT NOT NULL,
ST1Property1 BIGINT NOT NULL,
ST1Property2 FLOAT(23) NOT NULL,
CONSTRAINT SubType1_PK PRIMARY KEY(subType1Nr)
);
CREATE TABLE SubType2
(
subType2Nr INT NOT NULL,
ST2Property1 VARBINARY(65535) NOT NULL,
ST2Property2 BIT(1) NOT NULL,
CONSTRAINT SubType2_PK PRIMARY KEY(subType2Nr)
);
ALTER TABLE SubType1 ADD CONSTRAINT SubType1_FK FOREIGN KEY (subType1Nr) REFERENCES Supertype (supertypeNr) ON DELETE RESTRICT ON UPDATE RESTRICT;
ALTER TABLE SubType2 ADD CONSTRAINT SubType2_FK FOREIGN KEY (subType2Nr) REFERENCES Supertype (supertypeNr) ON DELETE RESTRICT ON UPDATE RESTRICT;