瀏覽代碼

更新column表结构 添加一个column:order

master
邓淳远 4 年之前
父節點
當前提交
df47eaf3fe
共有 1 個文件被更改,包括 2 次插入0 次删除
  1. +2
    -0
      APP/view/model.py

+ 2
- 0
APP/view/model.py 查看文件

@ -21,6 +21,7 @@ class Collection(Base):
tag = Column(String(255))
phonenum = Column(String(255))
like = Column(Integer)
order =Column(Integer)
def __init__(self, id=None, name=None, tag=None, phonenum=None, like=0):
self.id = id
@ -28,6 +29,7 @@ class Collection(Base):
self.tag = tag
self.phonenum = phonenum
self.like = like
self.order = id
class Block(Base):

Loading…
取消
儲存