フォーマッター&コード
SQL DDL → Prisma / Drizzle モデル
Reverse-engineer ORM models from an existing schema.
編集者注
Understanding · CREATE TABLE into Prisma, SQLAlchemy, ActiveRecord.
この詳細な解説章は現在、英語版のみで提供されています。上の変換ツールはあなたの言語で動作しますが、長文の解説記事はまだ翻訳されていません。
よくある質問
Quick answers.
›Does this tool support all SQL dialects?
It currently supports PostgreSQL, MySQL, and SQLite syntax for standard DDL scripts. Complex database-specific extensions might require manual adjustment.
›Is my database schema sent to a server?
No. The conversion logic is executed entirely in your browser using local parsing scripts. Your schema and table names never leave your device.
›Which ORM versions are supported?
The tool generates schema syntax compatible with the latest versions of Prisma and Drizzle ORM using TypeScript types.
›What happens to foreign keys and relationships?
The parser identifies `FOREIGN KEY` constraints and map them to their corresponding relation types in Prisma or Drizzle. Ensure your DDL includes these constraints for the most accurate output.
他の人はこちらも検索しています
関連ツール
More in this room.
- OpenAPI / Swagger ValidatorOpenAPI 3の仕様をルールに照らして検証します。
- OpenAPI 3.1 YAML ⇄ JSONOpenAPI 仕様を YAML と JSON の間で変換します。
- OpenAPI → TypeScript Axios クライアント任意の OpenAPI 仕様から型付き Axios クライアントを生成します。
- OpenAPI → React Query フックエンドポイントごとに useQuery + useMutation フックを自動生成します。
- OpenAPI → Postman コレクション任意の OpenAPI 仕様から Postman v2.1 コレクションを生成します。
- GraphQL SDL ⇄ TypeScript 型スキーマを走査し、型付きインターフェースを出力します — 双方向。