Generate ERD UML file from Schema DDL file
$ npm i schema-to-erd
import { schemaToErd } from 'schema-to-erd';
// or:
const { schemaToErd } = require('schema-to-erd');
schemaToErd('./schema_samples/sakila-schema.sql');
$ schema2erd -s ./schema_samples/sakila-schema.sql
// or:
$ npx schema-to-erd -s ./schema_samples/sakila-schema.sql
- Sakila Sample Database
- Employees Sample Database - https://github.com/datacharmer/test_db
- MySQL Sample Database - https://www.mysqltutorial.org/wp-content/uploads/2018/03/mysqlsampledatabase.zip
- https://github.com/ronaldbradford/schema
$ git clone https://github.com/youngkiu/schema-to-erd.git
$ git submodule update --init --recursive
If an error occurs during use, please open a new issue with the schema.sql file.