feat: add models

This commit is contained in:
2024-10-27 17:29:59 -03:00
parent e160025893
commit 6e063fd7fc
5 changed files with 53 additions and 0 deletions

5
app/models/pet_kind.py Normal file
View File

@@ -0,0 +1,5 @@
from app.extensions import db
class PetKind(db.Model):
id = db.Column(db.Integer, primary_key=True)
name = db.Column(db.String(255), nullable=False)