This commit is contained in:
Rich
2021-08-03 10:50:12 +01:00
parent 40814436e4
commit fb63f91239
4 changed files with 82 additions and 0 deletions

View File

@@ -34,3 +34,12 @@ class Passwords(db.Model):
def __repr__(self):
return "<Passwords {}>".format(self.ssid)
class ConfigTable(db.Model):
id = db.Column(db.Integer, primary_key=True)
k = db.Column(db.String(100))
v = db.Column(db.String(1023))
def __repr__(self):
return "<Config {}:{}>".format(self.k, self.v)