(saveddata_engine)
| 8 | |
| 9 | |
| 10 | def upgrade(saveddata_engine): |
| 11 | # Update characters schema to include alphaCloneID |
| 12 | try: |
| 13 | saveddata_engine.execute("SELECT alphaCloneID FROM characters LIMIT 1") |
| 14 | except sqlalchemy.exc.DatabaseError: |
| 15 | saveddata_engine.execute("ALTER TABLE characters ADD COLUMN alphaCloneID INTEGER;") |
nothing calls this directly
no outgoing calls
no test coverage detected