-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtabledef.py
More file actions
27 lines (19 loc) · 735 Bytes
/
tabledef.py
File metadata and controls
27 lines (19 loc) · 735 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
from sqlalchemy import *
from sqlalchemy import create_engine, ForeignKey
from sqlalchemy import Column, Date, Integer, String
from sqlalchemy.ext.declarative import declarative_base
from sqlalchemy.orm import relationship, backref
engine = create_engine('sqlite:///tutorial.db', echo=True)
Base = declarative_base()
###############################################################################################
class User(Base):
""""""
__tablename__ = 'users'
id = Column(Integer, primary_key=True)
username= Column(String)
password= Column(String)
def __init__(self, username, password):
self.username= username
self.password= password
# create tables
Base.metadata.create_all(engine)