mirror of
https://github.com/OMGeeky/gpt-pilot.git
synced 2025-12-27 14:49:11 +01:00
9 lines
170 B
Python
9 lines
170 B
Python
from peewee import *
|
|
|
|
from database.models.components.base_models import BaseModel
|
|
|
|
|
|
class User(BaseModel):
|
|
email = CharField(unique=True)
|
|
password = CharField()
|