From 7688ca513c8700ae51b3db2651b67c424e4e1436 Mon Sep 17 00:00:00 2001 From: wuaho Date: Wed, 1 Sep 2021 17:48:47 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B7=BB=E5=8A=A0anitype=20=E5=AD=97=E6=AE=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- main.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/main.py b/main.py index d740e86..d5927de 100644 --- a/main.py +++ b/main.py @@ -25,6 +25,7 @@ class UpdateInsert: Column('ctime', Integer), Column('atime', Integer), Column('mtime', Integer), + Column('anitype', String(32)), ) return self @@ -120,7 +121,8 @@ class FileMonitor: 'atime': atime, 'mtime': mtime, 'project': project_name, - 'path': file_path + 'path': file_path, + 'anitype': 'spine' }) print(ctime, atime, mtime, project_name, file_path) return data