summaryrefslogtreecommitdiffstats
path: root/config/SQL/modules.sql
diff options
context:
space:
mode:
authorneoraider <devnull@localhost>2006-12-10 19:00:04 +0100
committerneoraider <devnull@localhost>2006-12-10 19:00:04 +0100
commit93e1133ee88b03e7cae7318cb19761e698e57b86 (patch)
tree825b0ca10c5b32f3ad03430ec8b427f99d3dc855 /config/SQL/modules.sql
parent7be63518bdb86fb747dda20918ef6eab3d30e40c (diff)
downloadneon-93e1133ee88b03e7cae7318cb19761e698e57b86.tar
neon-93e1133ee88b03e7cae7318cb19761e698e57b86.zip
SQL-Daten tabellenweise aufgeteilt;
config-Daten jetzt mit urlencode kodiert.
Diffstat (limited to 'config/SQL/modules.sql')
-rw-r--r--config/SQL/modules.sql18
1 files changed, 18 insertions, 0 deletions
diff --git a/config/SQL/modules.sql b/config/SQL/modules.sql
new file mode 100644
index 0000000..4cc10e1
--- /dev/null
+++ b/config/SQL/modules.sql
@@ -0,0 +1,18 @@
+--
+-- Tabellenstruktur für Tabelle `modules`
+--
+
+CREATE TABLE `modules` (
+ `id` bigint(20) NOT NULL auto_increment,
+ `name` varchar(255) NOT NULL,
+ `enabled` tinyint(1) NOT NULL,
+ PRIMARY KEY (`id`),
+ UNIQUE KEY `name` (`name`)
+) TYPE=MyISAM AUTO_INCREMENT=6 ;
+
+--
+-- Daten für Tabelle `modules`
+--
+
+INSERT INTO `modules` (`id`, `name`, `enabled`) VALUES (5, 'Dream', 0);
+INSERT INTO `modules` (`id`, `name`, `enabled`) VALUES (3, 'BBCode', 1);