eta (estimated time of arrival) field in status_messages table is now an integer...
authorRazvan Deaconescu <razvan.deaconescu@cs.pub.ro>
Wed, 28 Oct 2009 07:33:47 +0000 (09:33 +0200)
committerRazvan Deaconescu <razvan.deaconescu@cs.pub.ro>
Wed, 28 Oct 2009 07:33:47 +0000 (09:33 +0200)
auto/sql/p2p-log-sqlite.sql

index 51013f5..fa3361f 100644 (file)
@@ -41,7 +41,7 @@ create table status_messages (
        upload_speed integer check (upload_speed between 0 and 1000000),
        download_size integer check(download_size between 0 and 100000000000),
        upload_size integer check(upload_size between 0 and 100000000000),
-       eta date);
+       eta integer);
 
 create table verbose_messages (
        cs_id integer references client_sessions(id) on delete cascade on update cascade,