mirror of
https://github.com/OMGeeky/gpt-pilot.git
synced 2026-02-23 15:49:50 +01:00
refactor DB
This commit is contained in:
8
euclid/database/models/user.py
Normal file
8
euclid/database/models/user.py
Normal file
@@ -0,0 +1,8 @@
|
||||
from peewee import *
|
||||
|
||||
from database.models.components.base_models import BaseModel
|
||||
|
||||
|
||||
class User(BaseModel):
|
||||
email = CharField(unique=True)
|
||||
password = CharField()
|
||||
Reference in New Issue
Block a user