Project

General

Profile

1
-- phpMyAdmin SQL Dump
2
-- Erstellungszeit: 15. Sep 2012 um 21:37
3
-- Server Version: 5.5.16
4
SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO";
5
-- --------------------------------------------------------
6
-- Database structure for module 'wysiwyg'
7
--
8
-- Replacements: {TABLE_PREFIX}, {TABLE_ENGINE}, {TABLE_COLLATION}
9
--
10
-- --------------------------------------------------------
11
--
12
-- Tabellenstruktur für Tabelle `mod_wysiwyg`
13

    
14
DROP TABLE IF EXISTS `{TABLE_PREFIX}mod_wysiwyg`;
15
CREATE TABLE IF NOT EXISTS `{TABLE_PREFIX}mod_wysiwyg` (
16
  `section_id` int(11) NOT NULL DEFAULT '0',
17
  `page_id` int(11) NOT NULL DEFAULT '0',
18
  `content` longtext{TABLE_COLLATION} NOT NULL,
19
  `text` longtext{TABLE_COLLATION} NOT NULL,
20
  PRIMARY KEY (`section_id`)
21
) {TABLE_ENGINE};
22
-- EndOfFile
    (1-1/1)