How to create a single table using SqlAlchemy declarative_base
Asked Answered
T

3

23

To create the User table I have to use drop_all and then create_all methods. But these two functions re-initiate an entire database. I wonder if there is a way to create the User table without erasing (or dropping) any existing tables in a database?

import sqlalchemy
from sqlalchemy.ext.declarative import declarative_base

Base = declarative_base()


class User(Base):
    __tablename__ = 'users'
    id = sqlalchemy.Column(sqlalchemy.Integer, primary_key=True)
    name = sqlalchemy.Column(sqlalchemy.String)

    def __init__(self, code=None, *args, **kwargs):
        self.name = name


url = 'postgresql+psycopg2://user:[email protected]/my_db'
engine = sqlalchemy.create_engine(url)
session = sqlalchemy.orm.scoped_session(sqlalchemy.orm.sessionmaker())
session.configure(bind=engine, autoflush=False, expire_on_commit=False)

Base.metadata.drop_all(engine)
Base.metadata.create_all(engine)
Transistor answered 22/7, 2017 at 22:21 Comment(2)
Why do you "have to" execute drop_all before create_all? If there are no other issues, create_all should be fine. And you can generally get interested in alembic and migrations.Recuperator
MetaData.drop_all() drops all tables stored in said metadata, not all in DB.Pluralize
A
52

You can create/drop individual tables:

User.__table__.drop(engine)
User.__table__.create(engine)
Abagail answered 24/7, 2017 at 18:38 Comment(1)
Seems like it is not working using binds. Any idea how to use it? TIA!Rehabilitation
S
2

Another way to accomplish the task:

Base.metadata.tables['users'].create(engine)
Base.metadata.tables['users'].drop(engine)
Sublimate answered 6/4, 2021 at 14:12 Comment(0)
H
0
from app import db
from models import User

User.__table__.create(db.engine)
User.__table__.drop(db.engine)
Haemorrhage answered 24/6, 2020 at 17:56 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.