summaryrefslogtreecommitdiffstats
path: root/config/neon.sql
diff options
context:
space:
mode:
Diffstat (limited to 'config/neon.sql')
-rw-r--r--config/neon.sql26
1 files changed, 23 insertions, 3 deletions
diff --git a/config/neon.sql b/config/neon.sql
index 21fec04..f78cbd6 100644
--- a/config/neon.sql
+++ b/config/neon.sql
@@ -3,7 +3,7 @@
-- http://www.phpmyadmin.net
--
-- Host: localhost
--- Erstellungszeit: 16. April 2006 um 22:17
+-- Erstellungszeit: 18. April 2006 um 02:19
-- Server Version: 5.0.19
-- PHP-Version: 5.1.2-1+b1
--
@@ -32,6 +32,25 @@ INSERT INTO `groups` VALUES (3, 'Mitglied');
-- --------------------------------------------------------
--
+-- Tabellenstruktur für Tabelle `modules`
+--
+
+CREATE TABLE `modules` (
+ `id` bigint(20) NOT NULL,
+ `name` varchar(255) NOT NULL,
+ `enabled` tinyint(1) NOT NULL,
+ PRIMARY KEY (`id`)
+) TYPE=MyISAM AUTO_INCREMENT=2 ;
+
+--
+-- Daten für Tabelle `modules`
+--
+
+INSERT INTO `modules` VALUES (1, 'BBCode', 1);
+
+-- --------------------------------------------------------
+
+--
-- Tabellenstruktur für Tabelle `nav`
--
@@ -41,7 +60,7 @@ CREATE TABLE `nav` (
`text` tinytext NOT NULL,
`link` tinytext NOT NULL,
PRIMARY KEY (`id`)
-) TYPE=MyISAM AUTO_INCREMENT=15 ;
+) TYPE=MyISAM AUTO_INCREMENT=16 ;
--
-- Daten für Tabelle `nav`
@@ -58,6 +77,7 @@ INSERT INTO `nav` VALUES (9, 0, 'Mitglieder', '');
INSERT INTO `nav` VALUES (10, 0, 'Test', '');
INSERT INTO `nav` VALUES (11, 10, 'Lorem Ipsum', ':Test:LoremIpsum');
INSERT INTO `nav` VALUES (12, 8, 'Seiten', ':Pages');
+INSERT INTO `nav` VALUES (15, 8, 'Module', ':Modules');
INSERT INTO `nav` VALUES (14, 8, 'Benutzer', ':Users');
-- --------------------------------------------------------
@@ -129,6 +149,6 @@ CREATE TABLE `users` (
-- Daten für Tabelle `users`
--
-INSERT INTO `users` VALUES (1, '', 0, 'NeoRaider', 'gamezock', '2006-04-16 22:17:42');
+INSERT INTO `users` VALUES (1, '', 0, 'NeoRaider', 'gamezock', '2006-04-18 02:17:02');
INSERT INTO `users` VALUES (3, '', 0, 'sicarius', 'armleuchter', '2006-03-05 23:46:46');
INSERT INTO `users` VALUES (4, '', 0, 'morti', 'return', '2006-03-05 22:02:27');