13 lines
372 B
Python
13 lines
372 B
Python
from app.supabase_client import execute_sql_file
|
|
|
|
def main():
|
|
print("Creating calibration audit table...")
|
|
result = execute_sql_file('sql/create_calibration_audit_table.sql')
|
|
if result.data:
|
|
print("Calibration audit table created successfully")
|
|
else:
|
|
print("Failed to create calibration audit table")
|
|
|
|
if __name__ == '__main__':
|
|
main()
|