-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmodels.py
40 lines (35 loc) · 1.68 KB
/
models.py
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
28
29
30
31
32
33
34
35
36
37
38
39
40
from flask_sqlalchemy import SQLAlchemy
from datetime import datetime
from flask_login import UserMixin
# from whoosh.analysis import StemmingAnalyzer
db = SQLAlchemy()
class User(db.Model , UserMixin):
__tablename__="user"
id = db.Column(db.Integer, primary_key=True)
name = db.Column(db.String(128), nullable=False)
email = db.Column(db.String(128), unique=True, nullable=False)
password = db.Column(db.String(128), nullable=False)
role = db.Column(db.String(128), nullable=False)
date_created = db.Column(db.DateTime , nullable=False , default=datetime.now())
def get_id(self):
return self.id
class Section(db.Model):
__tablename__="section"
# __searchable__ = ['name']
# __analyzer__ = StemmingAnalyzer()
id=db.Column(db.Integer,primary_key = True)
name = db.Column(db.String(64),nullable =False)
date_created=db.Column(db.DateTime, nullable = False,default= datetime.now())
# ebooks = db.relationship("Book", backref = "section", lazy = True)
# class Book(db.Model):
# __tablename__="book"
# id=db.Column(db.Integer,primary_key = True)
# title= db.Column(db.String(64), nullable = False)
# author=db.Column(db.String(64),nullable = False)
# date_created=db.Column(db.DateTime, nullable = False,default= datetime.now())
# description =db.Column(db.String(512), nullable = True)
# copies=db.Column(db.Integer,nullable=False)
# section_id = db.Column(db.Integer,db.ForeignKey('section.id'), nullable = True)
# blink = db.Column(db.String(64),nullable=False)
# book_feedback = db.relationship('Feedback', backref='books',lazy=True)
# sect = db.relationship('Section', backref=db.backref('books', lazy=True))