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