If you change the schema for any table with existing data, it will just shove the new schema in without any regard for the existing rows. It needs to:
- check that the existing rows are all valid within the new schema
- add/delete fields from existing rows as needed (probably should prompt the user about this)
If you change the schema for any table with existing data, it will just shove the new schema in without any regard for the existing rows. It needs to: