SQLite Forum

sqlite_master -> sqlite_schema rename breaks DB dump compatibility
Login
One perhaps brutal way:<code>
  .once |sed -e s/sqlite_schema/sqlite_master/ \> archaic_dump
  .dump
</code>, which will also alter any text or goofy identifiers containing the modern name for SQLite's schema table. (Maybe that's for the best.)