Explorar el Código

Another fixup, FLOAT -> DOUBLE in cache table.

master
Ben Kurtovic hace 8 años
padre
commit
601805d2f5
Se han modificado 2 ficheros con 2 adiciones y 2 borrados
  1. +1
    -1
      schema.sql
  2. +1
    -1
      templates/index.mako

+ 1
- 1
schema.sql Ver fichero

@@ -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;

+ 1
- 1
templates/index.mako Ver fichero

@@ -1,7 +1,7 @@
<%include file="/support/header.mako" args="title='TIF Calculator'"/>
<form action="${request.script_root}" method="get">
% if "title" in result:
<input type="text" name="title" value="${query['page'].title if 'page' in query else query['title'] | h}" />
<input type="text" name="title" value="${result['page'].title if 'page' in result else result['title'] | h}" />
% else:
<input type="text" name="title" />
% endif


Cargando…
Cancelar
Guardar