Nelson Strother writes:
I have not yet found where to insert this directive in mailman's database wrapper for SQLite. Might someone who has read more of the source be able to offer me a clue?
The only place I can think of offhand is
mailman/src/mailman/database/sqlite.py
which I think contains initialization code for the sqlite database. You may also want to look at the base.py and factory.py files to see if they invoke any hooks that you might use. sqlite.py is pretty short, there may not be a model statement for you there, but there might be models in some of the other database's files. I'm not sure if the alembic subdirectory would be helpful, I would guess not. AFAIK it works exclusively on the Mailman model to SQL side, rather than the SQL to implementation side.
Finally there may be some hints in
mailman/src/mailman/config/schema.cfg
if there's something like [database.sqlite] section, or other [database*] sections.