Added binaries

This commit is contained in:
Dimitris Zlatanidis 2023-03-20 21:33:04 +02:00
parent be3ba989ed
commit e9c98e2ec0

View file

@ -76,7 +76,6 @@ class UpdateRepository(Configs):
print()
self.delete_binaries_data(repo)
self.data.install_gnome_data()
def slackbuild_repositories(self):
@ -189,8 +188,11 @@ class UpdateRepository(Configs):
print(f'\n{self.prog_name}: {self.bred}WARNING{self.endc}: All the data from the database will be deleted!')
self.view.question()
tables: list = [PonceTable.__table__,
SBoTable.__table__]
tables: list = [
PonceTable.__table__,
SBoTable.__table__,
BinariesTable.__table__
]
Base.metadata.drop_all(bind=engine, tables=tables)
print("Successfully cleared!\n\nYou need to run 'slpkg update' now.")