You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
El sqlite-driver.ts creaba la tabla links sin las columnas is_read, notes, reminder_at
que sí existen en schema.sqlite.ts. Drizzle ORM genera SELECT con todos los campos del
schema, causando "no such column: is_read" al crear/listar enlaces en la app desktop.
Cambios:
- sqlite-driver.ts: añadir is_read, notes, reminder_at al CREATE TABLE links
- sqlite-driver.ts: añadir índices idx_links_is_read e idx_links_user_favorite
- sqlite-driver.ts: migraciones incrementales para DBs existentes (v0.3.17)
- Bump version 0.3.17 → 0.3.18
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
0 commit comments