From 601805d2f5a56400b961ea4525077cc0463e3907 Mon Sep 17 00:00:00 2001 From: Ben Kurtovic Date: Tue, 9 Feb 2016 23:50:38 -0600 Subject: [PATCH] Another fixup, FLOAT -> DOUBLE in cache table. --- schema.sql | 2 +- templates/index.mako | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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