Julio Biason
11 years ago
7 changed files with 100 additions and 66 deletions
@ -1,29 +0,0 @@ |
|||||||
#!/usr/bin/env python |
|
||||||
# -*- encoding: utf-8 -*- |
|
||||||
|
|
||||||
import datetime |
|
||||||
|
|
||||||
from flask import current_app |
|
||||||
|
|
||||||
from pony.orm import Database |
|
||||||
from pony.orm import PrimaryKey |
|
||||||
from pony.orm import Optional |
|
||||||
from pony.orm import Required |
|
||||||
# from pony.orm import Set |
|
||||||
|
|
||||||
db = Database("sqlite", current_app.config['SQLITE_FILENAME'], create_db=True) |
|
||||||
|
|
||||||
|
|
||||||
class User(db.Entity): |
|
||||||
"""Users.""" |
|
||||||
username = PrimaryKey(unicode) |
|
||||||
fullname = Required(unicode) |
|
||||||
passhash = Required(unicode) |
|
||||||
token = Optional(unicode) # 1. if the user never logged in, they will |
|
||||||
# not have a token. |
|
||||||
# 2. This forces the user to have a single |
|
||||||
# login everywhere, per day. |
|
||||||
issue_date = Optional(datetime.datetime) |
|
||||||
validated = Required(bool, default=False) |
|
||||||
|
|
||||||
db.generate_mapping(create_tables=True) |
|
@ -1,3 +1,3 @@ |
|||||||
Flask |
Flask |
||||||
flask-script |
flask-script |
||||||
pony |
flask-sqlalchemy |
||||||
|
Loading…
Reference in new issue