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
SET time_zone = "+00:00";
7
-- --------------------------------------------------------
8
-- Database structure for WebsiteBaker core
9
--
10
-- Replacements: {TABLE_PREFIX}, {TABLE_ENGINE}, {TABLE_COLLATION}
11
--
12
-- --------------------------------------------------------
13
--
14
-- Tabellenstruktur für Tabelle `{TABLE_PREFIX}mod_code`
15
--
16
DROP TABLE IF EXISTS `{TABLE_PREFIX}mod_code`;
17
CREATE TABLE IF NOT EXISTS `{TABLE_PREFIX}mod_code` (
18
  `section_id` int(11) NOT NULL DEFAULT '0',
19
  `page_id` int(11) NOT NULL DEFAULT '0',
20
  `content` text{TABLE_COLLATION} NOT NULL DEFAULT '',
21
  PRIMARY KEY (`section_id`)
22
){TABLE_ENGINE};
23
-- EndOfFile
    (1-1/1)