去除插开发者信息
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
from applications.extensions import db
|
||||
|
||||
|
||||
class pluginSetting(db.Model):
|
||||
__tablename__ = 'plugin_setting'
|
||||
id = db.Column(db.Integer, primary_key=True, autoincrement=True, comment="设置项ID")
|
||||
key = db.Column(db.String(255), comment="设置键")
|
||||
value = db.Column(db.String(65535), comment="设置值")
|
||||
|
||||
|
||||
Reference in New Issue
Block a user