(db)
| 923 | |
| 924 | |
| 925 | def create_tables(db): |
| 926 | db.connect() |
| 927 | verify_database_schema(db) |
| 928 | db.create_tables([Pokemon, Pokestop, Gym, ScannedLocation, GymDetails, GymMember, GymPokemon, Trainer, MainWorker, WorkerStatus], safe=True) |
| 929 | db.close() |
| 930 | |
| 931 | |
| 932 | def drop_tables(db): |
no test coverage detected