create table file( hash text primary key, 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);