Project

General

Profile

1
-- phpMyAdmin SQL Dump
2
-- version 3.4.5
3
-- http://www.phpmyadmin.net
4
--
5
-- Host: localhost
6
-- Erstellungszeit: 16. Sep 2012 um 03:20
7
-- Server Version: 5.5.16
8
-- PHP-Version: 5.3.8
9
-- $Id: form284db.sql 1771 2012-09-24 16:49:20Z Luisehahne $
10

    
11
SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO";
12
SET time_zone = "+00:00";
13

    
14

    
15
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
16
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
17
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
18
/*!40101 SET NAMES utf8 */;
19

    
20
--
21
-- Datenbank: ``
22
--
23

    
24
-- --------------------------------------------------------
25

    
26
--
27
-- Tabellenstruktur für Tabelle `mod_form_fields`
28
--
29

    
30
DROP TABLE IF EXISTS `{TABLE_PREFIX}mod_form_fields`;
31
CREATE TABLE IF NOT EXISTS `{TABLE_PREFIX}mod_form_fields` (
32
  `field_id` int(11) NOT NULL AUTO_INCREMENT,
33
  `section_id` int(11) NOT NULL DEFAULT '0',
34
  `page_id` int(11) NOT NULL DEFAULT '0',
35
  `position` int(11) NOT NULL DEFAULT '0',
36
  `title` varchar(255) NOT NULL DEFAULT '',
37
  `type` varchar(255) NOT NULL DEFAULT '',
38
  `required` int(11) NOT NULL DEFAULT '0',
39
  `value` text NOT NULL,
40
  `extra` text NOT NULL,
41
  PRIMARY KEY (`field_id`)
42
) {TABLE_ENGINE};
43

    
44
-- --------------------------------------------------------
45

    
46
--
47
-- Tabellenstruktur für Tabelle `mod_form_settings`
48
--
49

    
50
DROP TABLE IF EXISTS `{TABLE_PREFIX}mod_form_settings`;
51
CREATE TABLE IF NOT EXISTS `{TABLE_PREFIX}mod_form_settings` (
52
  `section_id` int(11) NOT NULL DEFAULT '0',
53
  `page_id` int(11) NOT NULL DEFAULT '0',
54
  `header` text NOT NULL,
55
  `field_loop` text NOT NULL,
56
  `footer` text NOT NULL,
57
  `email_to` text NOT NULL,
58
  `email_from` varchar(255) NOT NULL DEFAULT '',
59
  `email_fromname` varchar(255) NOT NULL DEFAULT '',
60
  `email_subject` varchar(255) NOT NULL DEFAULT '',
61
  `success_page` text NOT NULL,
62
  `success_email_to` text NOT NULL,
63
  `success_email_from` varchar(255) NOT NULL DEFAULT '',
64
  `success_email_fromname` varchar(255) NOT NULL DEFAULT '',
65
  `success_email_text` text NOT NULL,
66
  `success_email_subject` varchar(255) NOT NULL DEFAULT '',
67
  `stored_submissions` int(11) NOT NULL DEFAULT '0',
68
  `max_submissions` int(11) NOT NULL DEFAULT '0',
69
  `perpage_submissions` int(11) NOT NULL DEFAULT '10',
70
  `use_captcha` int(11) NOT NULL DEFAULT '0',
71
  PRIMARY KEY (`section_id`)
72
) {TABLE_ENGINE};
73

    
74
-- --------------------------------------------------------
75

    
76
--
77
-- Tabellenstruktur für Tabelle `mod_form_submissions`
78
--
79

    
80
DROP TABLE IF EXISTS `{TABLE_PREFIX}mod_form_submissions`;
81
CREATE TABLE IF NOT EXISTS `{TABLE_PREFIX}mod_form_submissions` (
82
  `submission_id` int(11) NOT NULL AUTO_INCREMENT,
83
  `section_id` int(11) NOT NULL DEFAULT '0',
84
  `page_id` int(11) NOT NULL DEFAULT '0',
85
  `submitted_when` int(11) NOT NULL DEFAULT '0',
86
  `submitted_by` int(11) NOT NULL DEFAULT '0',
87
  `body` text NOT NULL,
88
  PRIMARY KEY (`submission_id`)
89
) {TABLE_ENGINE};
90

    
91
-- --------------------------------------------------------
92

    
93
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
94
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
95
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
    (1-1/1)