Project

General

Profile

1
-- phpMyAdmin SQL Dump
2
-- Erstellungszeit: 15. Mrz 2013 um 18:21
3
-- Server-Version: 5.5.27
4
--
5
SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO";
6
-- --------------------------------------------------------
7
-- Database structure for WebsiteBaker core
8
--
9
-- Replacements: {TABLE_PREFIX}, {TABLE_ENGINE}, {TABLE_COLLATION}
10
--
11
-- --------------------------------------------------------
12
--
13
-- Tabellenstruktur für Tabelle `{TABLE_PREFIX}mod_droplets`
14
--
15
DROP TABLE IF EXISTS `{TABLE_PREFIX}mod_droplets`;
16
CREATE TABLE IF NOT EXISTS `{TABLE_PREFIX}mod_droplets` (
17
  `id` int(11) NOT NULL AUTO_INCREMENT,
18
  `name` varchar(32){TABLE_COLLATION} NOT NULL DEFAULT '',
19
  `code` longtext{TABLE_COLLATION} NOT NULL DEFAULT '',
20
  `description` text{TABLE_COLLATION} NOT NULL DEFAULT '',
21
  `modified_when` int(11) NOT NULL DEFAULT '0',
22
  `modified_by` int(11) NOT NULL DEFAULT '0',
23
  `active` int(11) NOT NULL DEFAULT '0',
24
  `admin_edit` int(11) NOT NULL DEFAULT '0',
25
  `admin_view` int(11) NOT NULL DEFAULT '0',
26
  `show_wysiwyg` int(11) NOT NULL DEFAULT '0',
27
  `comments` text{TABLE_COLLATION} NOT NULL DEFAULT '',
28
  PRIMARY KEY (`id`)
29
){TABLE_ENGINE};
30
-- EndOfFile
    (1-1/1)