import sqlite3

DATABASE = 'weddingRS.db'

# Connect to the database
with sqlite3.connect(DATABASE) as conn:
    # Drop the table if it exists
    conn.execute('DROP TABLE IF EXISTS registrations')
    conn.commit()

print("Table 'registrations' dropped successfully.")
