แปลง DDL เป็น Types
อ่านคำสั่ง CREATE TABLE แล้วสร้าง type ของ TypeScript, Zod หรือ Go struct ให้อัตโนมัติ
export interface Users {
id: number;
email: string;
full_name: string | null;
is_active: boolean;
tags: string[] | null;
created_at: string;
}จำนวนตาราง1
จำนวนคอลัมน์6
ขนาด154 B