Alembic从数据库构建Python Orm文件

发布于 2025-01-22 23:36:15 字数 528 浏览 0 评论 0原文

我有一个包含近100个表的数据库。我正在尝试使用Alembic在Python中进行管理。 Alembic有没有办法为我构建Orm Python文件,或者我必须自己编写它们。

例如,在数据库中有一个带有列ID的用户表,first_name,last_name,电子邮件是否可以从数据库中删除它,并基本上为我编写以下文件:

from sqlalchemy.ext.declarative import declarative_base
from sqlalchemy import Column, Integer, String, ForeignKey
​
Base = declarative_base()
​
class User(Base):
   __tablename__ = 'user'
​
   id = Column(Integer, primary_key=True)
   first_name = Column(String)
   last_name = Column(String)
   email = Column(String)

谢谢

I have a database with nearly 100 tables. I am trying to use alembic to manage it in python. Is there a way for alembic to build the ORM python files for me or do I have to write them myself.

For example in the database there is a user table with columns id, first_name, last_name, email is there a way alembic can pull this from the database and basically write the following file for me:

from sqlalchemy.ext.declarative import declarative_base
from sqlalchemy import Column, Integer, String, ForeignKey
​
Base = declarative_base()
​
class User(Base):
   __tablename__ = 'user'
​
   id = Column(Integer, primary_key=True)
   first_name = Column(String)
   last_name = Column(String)
   email = Column(String)

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文