This commit is contained in:
2025-04-12 12:26:02 +02:00
parent 97e4b7fe0a
commit 1a59cc4153
12 changed files with 98 additions and 13 deletions

View File

@@ -0,0 +1,7 @@
from application import db
class Service(db.Model):
id = db.Column(db.Integer, primary_key=True)
name = db.Column(db.String, nullable=False)
url = db.Column(db.String, nullable=False)