Deletes old stellar tables that are not used anymore
()
| 44 | |
| 45 | @stellar.command() |
| 46 | def gc(): |
| 47 | """Deletes old stellar tables that are not used anymore""" |
| 48 | def after_delete(database): |
| 49 | click.echo("Deleted table %s" % database) |
| 50 | |
| 51 | app = get_app() |
| 52 | upgrade_from_old_version(app) |
| 53 | app.delete_orphan_snapshots(after_delete) |
| 54 | |
| 55 | |
| 56 | @stellar.command() |
nothing calls this directly
no test coverage detected