mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 22:51:17 +07:00
15 lines
264 B
Python
15 lines
264 B
Python
|
|
def foo3(x):
|
|
'''
|
|
>>> class User(Base):
|
|
... __tablename__ = 'users'
|
|
...
|
|
... <caret>id = Column(Integer, primary_key=True)
|
|
... name = Column(String)
|
|
... fullname = Column(String)
|
|
...
|
|
... password = Column(String)
|
|
'''
|
|
pass
|
|
|