Hacker News new | ask | show | jobs
by SPBS 1497 days ago
SQLite doesn't support adding generated stored columns to a table once the table has been created, so you basically have to decide upfront which generated columns must be stored, and then you can't touch it anymore (short of dropping it).
1 comments

That’s normal DBA for SQLite - you can’t even rename columns without dropping the table. So not such an obstacle.
You can rename it now, unless I'm missing something

https://www.sqlite.org/lang_altertable.html