First Check
Commit to Help
Example Code
from sqlalchemy import Boolean, Column, ForeignKey, Integer, String
class Tenant(Base):
__tablename__ = "tenants"
id = Column("id", Integer, primary_key=True, nullable=False)
name = Column("name", String(256), nullable=False, index=True, unique=True)
schema = Column("schema", String(256), nullable=False, unique=True)
host = Column("host", String(256), nullable=False, unique=True)
__table_args__ = ({"schema": "shared"},)
Description
Found an Article but unable to understand how to implement dynamic schema generation when new client sign up on the portal.
so that any client access like
client1.mysite.com
client2.mysite.com
And schema generation should be on the fly if a new client signup
Operating System
Linux
Operating System Details
No response
FastAPI Version
0.88.0
Python Version
3.10.9
Additional Context
No response
First Check
Commit to Help
Example Code
Description
Found an Article but unable to understand how to implement dynamic schema generation when new client sign up on the portal.
so that any client access like
client1.mysite.com
client2.mysite.com
And schema generation should be on the fly if a new client signup
Operating System
Linux
Operating System Details
No response
FastAPI Version
0.88.0
Python Version
3.10.9
Additional Context
No response