作者 lemon

test add column

@@ -5,7 +5,6 @@ __pycache__/ @@ -5,7 +5,6 @@ __pycache__/
5 5
6 test*.py 6 test*.py
7 db/*.db 7 db/*.db
8 -db/versions/*  
9 8
10 filecache/ 9 filecache/
11 # C extensions 10 # C extensions
@@ -66,6 +66,7 @@ class UserList(Base): @@ -66,6 +66,7 @@ class UserList(Base):
66 fbid = Column(String(20), index=True) 66 fbid = Column(String(20), index=True)
67 status = Column(Integer, default=0, nullable=False, index=True) 67 status = Column(Integer, default=0, nullable=False, index=True)
68 proxy = Column(String(256)) 68 proxy = Column(String(256))
  69 + test = Column(String(256))
69 70
70 def __repr__(self): 71 def __repr__(self):
71 return "User(id={}, email={}, password={}, cookie={}, fbid={}, status={})" \ 72 return "User(id={}, email={}, password={}, cookie={}, fbid={}, status={})" \
@@ -23,4 +23,5 @@ for name, ver in li: @@ -23,4 +23,5 @@ for name, ver in li:
23 print(res) 23 print(res)
24 24
25 from bin import start 25 from bin import start
  26 +
26 start.core.run() 27 start.core.run()