init
This commit is contained in:
7
flaskapp/models.py
Normal file
7
flaskapp/models.py
Normal 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)
|
||||
|
Reference in New Issue
Block a user