فهرست منبع

added field in server for determining if it has already been registered in central database

Gamaliel Espinoza 8 سال پیش
والد
کامیت
892a9b4603
2فایلهای تغییر یافته به همراه7 افزوده شده و 1 حذف شده
  1. 1 1
      tools/fourier/__init__.py
  2. 6 0
      tools/fourier/migrations.py

+ 1 - 1
tools/fourier/__init__.py

@@ -1 +1 @@
-__version__ = '1.0.9'
+__version__ = '1.0.10'

+ 6 - 0
tools/fourier/migrations.py

@@ -12,5 +12,11 @@ versions = [
         [
         	'alter table "file" add column "priority" int not null default 0',
         ]
+    ),
+    (
+        '3',
+        [
+            'alter table "file" add column "in_server" int not null default 0' ,
+        ]
     )
 ]