Creating Tables
Once you have defined your databases, schemas, and tables, you can create them in your PostgreSQL database by using the create_database_and_tables function.
python
from square_database_structure import create_database_and_tables
Define the database connection details
db_username = "your_username"
db_password = "your_password"
db_ip = "localhost"
db_port = 5432
Call the function to create the database and tables
create_database_and_tables(db_username, db_password, db_ip, db_port)
**Full Changelog**: https://github.com/thepmsquare/square_database_structure/compare/1.0.3...1.1.0