Просмотр исходного кода

post search: configs and database

tags/vichan-devel-4.0.4-gold
czaks 11 лет назад
Родитель
Сommit
472b518165
2 измененных файлов: 16 добавлений и 1 удалений
  1. +4
    -1
      install.php
  2. +12
    -0
      install.sql

+ 4
- 1
install.php Просмотреть файл

@@ -1,7 +1,7 @@
<?php

// Installation/upgrade file
define('VERSION', 'v0.9.6-dev-8 + <a href="https://github.com/vichan-devel/Tinyboard/">vichan-devel-4.0.1</a>');
define('VERSION', 'v0.9.6-dev-8 + <a href="https://github.com/vichan-devel/Tinyboard/">vichan-devel-4.0.2</a>');

require 'inc/functions.php';

@@ -230,6 +230,9 @@ if (file_exists($config['has_installed'])) {
case 'v0.9.6-dev-7':
case 'v0.9.6-dev-7 + <a href="https://github.com/vichan-devel/Tinyboard/">vichan-devel-4.0-gold</a>':
query("ALTER TABLE `bans` ADD `seen` BOOLEAN NOT NULL") or error(db_error());
case 'v0.9.6-dev-8':
case 'v0.9.6-dev-8 + <a href="https://github.com/vichan-devel/Tinyboard/">vichan-devel-4.0.1</a>':
query("CREATE TABLE IF NOT EXISTS `search_queries` ( `ip` varchar(39) NOT NULL, `time` int(11) NOT NULL, `query` text NOT NULL) ENGINE=MyISAM DEFAULT CHARSET=utf8;") or error(db_error());
case false:
// Update version number
file_write($config['has_installed'], VERSION);


+ 12
- 0
install.sql Просмотреть файл

@@ -234,6 +234,18 @@ CREATE TABLE IF NOT EXISTS `robot` (
-- --------------------------------------------------------

--
-- Table structure for table `search_queries`
--

CREATE TABLE IF NOT EXISTS `search_queries` (
`ip` varchar(39) NOT NULL,
`time` int(11) NOT NULL,
`query` text NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

-- --------------------------------------------------------

--
-- Table structure for table `theme_settings`
--



Загрузка…
Отмена
Сохранить