Gamaliel Espinoza 8 роки тому
батько
коміт
fa1387770f
1 змінених файлів з 9 додано та 0 видалено
  1. 9 0
      filesdb.sql

+ 9 - 0
filesdb.sql

@@ -0,0 +1,9 @@
+create table file(
+	sha text,
+	station text,
+	timestamp int,
+	filename text,
+	uploaded int
+);
+create index timestamp_index_desc on file (timestamp desc);
+create index timestamp_index_asc on file (timestamp desc);