Project

General

Profile

1
-- --------------------------------------------------------
2
-- SQL-Import-Struct-File
3
-- generated with ConvertDump Version 0.2.1
4
-- WebsiteBaker Edition
5
-- Creation time: Tue, 03 Feb 2015 11:25:46 +0100
6
-- --------------------------------------------------------
7
-- phpMyAdmin SQL Dump
8
-- version 3.5.7
9
-- http://www.phpmyadmin.net
10
--
11
-- Host: 127.0.0.1
12
-- Erstellungszeit: 03. Feb 2015 um 11:14
13
-- Server Version: 5.5.27
14
-- PHP-Version: 5.4.19
15
SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO";
16
SET time_zone = "+00:00";
17
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
18
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
19
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
20
/*!40101 SET NAMES utf8 */;
21
--
22
-- --------------------------------------------------------
23
--
24
-- Tabellenstruktur für Tabelle `{TABLE_PREFIX}mod_form_fields`
25
--
26
DROP TABLE IF EXISTS `{TABLE_PREFIX}mod_form_fields`;
27
CREATE TABLE IF NOT EXISTS `{TABLE_PREFIX}mod_form_fields` (
28
  `field_id` int(11) NOT NULL AUTO_INCREMENT,
29
  `section_id` int(11) NOT NULL DEFAULT '0',
30
  `page_id` int(11) NOT NULL DEFAULT '0',
31
  `position` int(11) NOT NULL DEFAULT '0',
32
  `title` varchar(255){FIELD_COLLATION} NOT NULL DEFAULT '',
33
  `type` varchar(255){FIELD_COLLATION} NOT NULL DEFAULT '',
34
  `required` int(11) NOT NULL DEFAULT '0',
35
  `value` text{FIELD_COLLATION} NOT NULL,
36
  `extra` text{FIELD_COLLATION} NOT NULL,
37
  PRIMARY KEY (`field_id`)
38
){TABLE_ENGINE=MyISAM};
39
-- --------------------------------------------------------
40
--
41
-- Tabellenstruktur für Tabelle `{TABLE_PREFIX}mod_form_settings`
42
--
43
DROP TABLE IF EXISTS `{TABLE_PREFIX}mod_form_settings`;
44
CREATE TABLE IF NOT EXISTS `{TABLE_PREFIX}mod_form_settings` (
45
  `section_id` int(11) NOT NULL DEFAULT '0',
46
  `page_id` int(11) NOT NULL DEFAULT '0',
47
  `header` text{FIELD_COLLATION} NOT NULL,
48
  `field_loop` text{FIELD_COLLATION} NOT NULL,
49
  `footer` text{FIELD_COLLATION} NOT NULL,
50
  `email_to` text{FIELD_COLLATION} NOT NULL,
51
  `email_from` varchar(255){FIELD_COLLATION} NOT NULL DEFAULT '',
52
  `email_fromname` varchar(255){FIELD_COLLATION} NOT NULL DEFAULT '',
53
  `email_subject` varchar(255){FIELD_COLLATION} NOT NULL DEFAULT '',
54
  `success_page`  int(11) NOT NULL DEFAULT '0',
55
  `success_email_to` text{FIELD_COLLATION} NOT NULL,
56
  `success_email_from` varchar(255){FIELD_COLLATION} NOT NULL DEFAULT '',
57
  `success_email_fromname` varchar(255){FIELD_COLLATION} NOT NULL DEFAULT '',
58
  `success_email_text` text{FIELD_COLLATION} NOT NULL,
59
  `success_email_subject` varchar(255){FIELD_COLLATION} NOT NULL DEFAULT '',
60
  `stored_submissions` int(11) NOT NULL DEFAULT '0',
61
  `max_submissions` int(11) NOT NULL DEFAULT '0',
62
  `perpage_submissions` int(11) NOT NULL DEFAULT '10',
63
  `use_captcha` int(11) NOT NULL DEFAULT '0',
64
  PRIMARY KEY (`section_id`)
65
){TABLE_ENGINE=MyISAM};
66
-- --------------------------------------------------------
67
--
68
-- Tabellenstruktur für Tabelle `{TABLE_PREFIX}mod_form_submissions`
69
--
70
DROP TABLE IF EXISTS `{TABLE_PREFIX}mod_form_submissions`;
71
CREATE TABLE IF NOT EXISTS `{TABLE_PREFIX}mod_form_submissions` (
72
  `submission_id` int(11) NOT NULL AUTO_INCREMENT,
73
  `section_id` int(11) NOT NULL DEFAULT '0',
74
  `page_id` int(11) NOT NULL DEFAULT '0',
75
  `submitted_when` int(11) NOT NULL DEFAULT '0',
76
  `submitted_by` int(11) NOT NULL DEFAULT '0',
77
  `body` text{FIELD_COLLATION} NOT NULL,
78
  PRIMARY KEY (`submission_id`)
79
){TABLE_ENGINE=MyISAM};
80
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
81
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
82
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
83
-- --------------------------------------------------------
84
-- END OF SQL-Import-Struct-File
85
-- --------------------------------------------------------
(12-12/28)