generated from Eddie/Backend-Boilerplate
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
277 B
11 lines
277 B
2 years ago
|
from config import db
|
||
|
|
||
|
#!______________ DB Models ______________
|
||
|
class User(db.Model):
|
||
|
__tablename__ = "User"
|
||
|
id = db.Column(db.Integer, primary_key=True)
|
||
|
name = db.Column(db.String(50))
|
||
|
image = db.Column(db.String())
|
||
|
description = db.Column(db.String())
|
||
|
|