bin/populate-lang-table, mason/pastebin/%show: Segregate `highlight' languages.
[odin-cgi] / sql / setup-shorturl.sql
index 3b20463..dee90a3 100644 (file)
@@ -17,9 +17,10 @@ insert into odin_shorturl_seq (seq) values (10000);
 
 create table odin_shorturl
        (tag varchar(16) primary key,
-        stamp timestamp not null default current_timestamp,
+        stamp bigint not null,
         owner varchar(64) not null,
         url text not null);
 create index odin_shorturl_by_owner on odin_shorturl (owner);
+create index odin_shorturl_by_url_owner on odin_shorturl (url, owner);
 
 commit;