-
Add a field to
models.EWUser
. -
Add the field to the database, e.g.:
$ sqlite3 db.sqlite3 sqlite> alter table ew_ewuser add column string; sqlite> update ew_ewuser set <new_field>=''; sqlite> ^D
-
Add the database upgrade information to
UPGRADE.txt
. -
Modify
views.ew_settings
where needed to include the new field. -
Update the translation file.