Project

General

Profile

« Previous | Next » 

Revision 1887

Added by Dietmar over 11 years ago

  1. bugfix Notice: Constant messages during new WB installation
    ! update WbDatabase SqlImport parameter,

View differences:

mod_wysiwyg.sql
1 1
-- phpMyAdmin SQL Dump
2
-- version 3.4.5
3
-- http://www.phpmyadmin.net
4
--
5
-- Host: localhost
6 2
-- Erstellungszeit: 15. Sep 2012 um 21:37
7 3
-- Server Version: 5.5.16
8
-- PHP-Version: 5.3.8
9

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

  
13

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

  
19 5
-- --------------------------------------------------------
20

  
6
-- Database structure for module 'wysiwyg'
21 7
--
8
-- Replacements: {TABLE_PREFIX}, {TABLE_ENGINE}, {TABLE_COLLATION}
9
--
10
-- --------------------------------------------------------
11
--
22 12
-- Tabellenstruktur für Tabelle `mod_wysiwyg`
23
--
24 13

  
25 14
DROP TABLE IF EXISTS `{TABLE_PREFIX}mod_wysiwyg`;
26 15
CREATE TABLE IF NOT EXISTS `{TABLE_PREFIX}mod_wysiwyg` (
27 16
  `section_id` int(11) NOT NULL DEFAULT '0',
28 17
  `page_id` int(11) NOT NULL DEFAULT '0',
29
  `content` longtext NOT NULL,
30
  `text` longtext NOT NULL,
18
  `content` longtext{TABLE_COLLATION} NOT NULL,
19
  `text` longtext{TABLE_COLLATION} NOT NULL,
31 20
  PRIMARY KEY (`section_id`)
32
) ENGINE=MyISAM  DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
33

  
34
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
35
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
36
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
21
) {TABLE_ENGINE};
22
-- EndOfFile

Also available in: Unified diff