Project

General

Profile

1 1756 Luisehahne
-- 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 1887 Luisehahne
-- Database structure for module 'wysiwyg'
7 1756 Luisehahne
--
8 1887 Luisehahne
-- Replacements: {TABLE_PREFIX}, {TABLE_ENGINE}, {TABLE_COLLATION}
9
--
10
-- --------------------------------------------------------
11
--
12 1756 Luisehahne
-- 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 1887 Luisehahne
  `content` longtext{TABLE_COLLATION} NOT NULL,
19
  `text` longtext{TABLE_COLLATION} NOT NULL,
20 1760 Luisehahne
  PRIMARY KEY (`section_id`)
21 1887 Luisehahne
) {TABLE_ENGINE};
22
-- EndOfFile