소스 검색

files database

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);