Project

General

Profile

1
-- phpMyAdmin SQL Dump
2
-- version 3.5.7
3
-- Erstellungszeit: 15. Mrz 2013 um 18:21
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_menu_link`
14
--
15
DROP TABLE IF EXISTS `{TABLE_PREFIX}mod_menu_link`;
16
CREATE TABLE IF NOT EXISTS `{TABLE_PREFIX}mod_menu_link` (
17
  `section_id` int(11) NOT NULL DEFAULT '0',
18
  `page_id` int(11) NOT NULL DEFAULT '0',
19
  `target_page_id` int(11) NOT NULL DEFAULT '0',
20
  `redirect_type` int(11) NOT NULL DEFAULT '301',
21
  `anchor` varchar(255){TABLE_COLLATION} NOT NULL DEFAULT '0',
22
  `extern` varchar(255){TABLE_COLLATION} NOT NULL DEFAULT '',
23
  PRIMARY KEY (`section_id`)
24
){TABLE_ENGINE};
25
-- EndOfFile
    (1-1/1)