Install
openclaw skills install sqlite-turso-migrationPrisma PostgreSQL → SQLite/Turso migration pattern for AI workspaces — converts production Postgres schemas to edge-compatible SQLite with Turso replication. Use when moving from a hosted Postgres database to a lightweight embedded SQLite setup, enabling local-first development with optional Turso cloud sync, or reducing database costs by replacing managed Postgres with Turso's generous free tier for low-traffic AI applications.
openclaw skills install sqlite-turso-migrationSTATUS: DRAFT — This skill is planned but not yet fully implemented.
Provides a step-by-step migration pattern for moving Prisma-managed PostgreSQL schemas to SQLite (local) or Turso (edge-replicated SQLite). Handles the key incompatibilities between Postgres and SQLite: no arrays (→ JSON columns), no enums (→ text with check constraints), no UUID type (→ text), and different auto-increment semantics. Includes a validation harness to verify data integrity post-migration.
@prisma/adapter-libsql)