This commit is contained in:
2023-10-20 15:20:56 +02:00
commit 22c6084863
19 changed files with 705 additions and 0 deletions

7
flaskapp/models.py Normal file
View File

@@ -0,0 +1,7 @@
from flaskapp import db
class Table(db.Model):
id = db.Column(db.Integer, primary_key=True)
variable1 = db.Column(db.Integer, nullable=False)
variable2 = db.Column(db.Integer, nullable=False)