Fix: Clean up Python comments and deprecated js code.

This commit is contained in:
2025-03-21 14:34:29 +00:00
parent a6cbf9a7b7
commit 85a3ec4c9f
20 changed files with 28 additions and 879 deletions

View File

@@ -4,7 +4,6 @@ dir_parent = os.path.abspath(__file__ + '/../..')
dir_sql = os.path.abspath(dir_parent + '/sql')
# METHODS
for entry in os.scandir(dir_sql):
if entry.is_file():
if '_tbl_' in entry.name:
@@ -17,5 +16,3 @@ for entry in os.scandir(dir_sql):
os.rename(entry.path, dir_sql + '/' + new_name)
if entry.is_dir():
pass
# SELECT CONCAT('WARNING: Table ', TABLE_NAME, ' already exists.') AS msg_warning FROM INFORMATION_SCHEMA.TABLES WHERE TABLE_NAME = 'Shop_Msg_Error_Type';