All checks were successful
- Implement SQLite DDL writer to convert PostgreSQL schemas to SQLite-compatible SQL statements. - Include automatic schema flattening, type mapping, auto-increment detection, and function translation. - Add templates for creating tables, indexes, unique constraints, check constraints, and foreign keys. - Implement tests for writer functionality and data type mapping.
3 lines
60 B
Cheetah
3 lines
60 B
Cheetah
-- Enable foreign key constraints
|
|
PRAGMA foreign_keys = ON;
|