Add YASnippets for Flask-SQLAlchemy models

…both normal and translatable
This commit is contained in:
2017-09-25 11:09:42 +02:00
parent 620bc853f7
commit bbcabf3c74
2 changed files with 24 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
# -*- mode: snippet -*-
# name: flask_sqlalchemy_model
# key: model
# --
class ${1:name}(db.Model):
__tablename__ = '${2:tablename}'
id = db.Column(db.Integer, primary_key=True)
$0