We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 018a31d commit cb81867Copy full SHA for cb81867
__init__.py
models/Tag.py
@@ -0,0 +1,8 @@
1
+from models import db
2
+class Tag(db.Model):
3
+ __tablename__ = 'Tag'
4
+ Id = db.Column(db.Integer, primary_key=True)
5
+ TagName = db.Column(db.String(45))
6
+
7
+ def __init__(self, name):
8
+ self.TagName = name
0 commit comments