Store Unix timestamps in the database, rather than SQL ones.
[odin-cgi] / sql / setup-shorturl.sql
index eaddf90..dee90a3 100644 (file)
@@ -17,7 +17,7 @@ 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);