diff --git a/schema.sql b/schema.sql index 8edb002..c5c7ce3 100644 --- a/schema.sql +++ b/schema.sql @@ -3,7 +3,7 @@ CREATE DATABASE `sXXXXX__tif`; DROP TABLE IF EXISTS `cache`; CREATE TABLE `cache` ( `cache_id` INT(10) UNSIGNED NOT NULL, - `cache_views` FLOAT NOT NULL, + `cache_views` DOUBLE NOT NULL, `cache_time` TIMESTAMP NOT NULL DEFAULT '0000-00-00 00:00:00', PRIMARY KEY (`cache_id`) ) ENGINE=InnoDB; diff --git a/templates/index.mako b/templates/index.mako index a518376..625e9ee 100644 --- a/templates/index.mako +++ b/templates/index.mako @@ -1,7 +1,7 @@ <%include file="/support/header.mako" args="title='TIF Calculator'"/>
% if "title" in result: - + % else: % endif