You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
from uuid import uuid4
|
|
|
|
from suchwowx.factory import db
|
|
|
|
|
|
def rand_id():
|
|
return uuid4().hex
|
|
|
|
|
|
class User(db.Model):
|
|
__tablename__ = 'users'
|
|
|
|
id = db.Column(db.Integer, primary_key=True)
|