Project

General

Profile

1
-- phpMyAdmin SQL Dump
2
-- Erstellungszeit: 15. Mrz 2013 um 18:21
3
-- Server-Version: 5.5.27
4
SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO";
5
SET time_zone = "+00:00";
6
-- --------------------------------------------------------
7
-- Database structure for WebsiteBaker core
8
--
9
-- Replacements: {TABLE_PREFIX}, {TABLE_ENGINE}, {TABLE_COLLATION}
10
--
11
-- --------------------------------------------------------
12
--
13
-- Tabellenstruktur für Tabelle `mod_captcha_control`
14
--
15
DROP TABLE IF EXISTS `{TABLE_PREFIX}mod_captcha_control`;
16
CREATE TABLE IF NOT EXISTS `{TABLE_PREFIX}mod_captcha_control` (
17
  `enabled_captcha` int(11) NOT NULL DEFAULT '1',
18
  `enabled_asp` int(11) NOT NULL DEFAULT '1',
19
  `captcha_type` varchar(255){TABLE_COLLATION} NOT NULL DEFAULT 'calc_text',
20
  `asp_session_min_age` int(11) NOT NULL DEFAULT '20',
21
  `asp_view_min_age` int(11) NOT NULL DEFAULT '10',
22
  `asp_input_min_age` int(11) NOT NULL DEFAULT '5',
23
  `ct_text` longtext{TABLE_COLLATION} NOT NULL
24
) {TABLE_ENGINE};
25
-- EndOfFile
(2-2/2)