summaryrefslogtreecommitdiffstats
path: root/config/SQL/privs.sql
diff options
context:
space:
mode:
authorneoraider <devnull@localhost>2006-12-14 01:06:02 +0100
committerneoraider <devnull@localhost>2006-12-14 01:06:02 +0100
commit543336aef16562369c01992817f58e17144c9cad (patch)
treed49cd8549a836c740df7096ddcf7788ed7920c37 /config/SQL/privs.sql
parent93e1133ee88b03e7cae7318cb19761e698e57b86 (diff)
downloadneon-543336aef16562369c01992817f58e17144c9cad.tar
neon-543336aef16562369c01992817f58e17144c9cad.zip
Base-Type durch Subst-Erweiterungen unnoetig gemacht; Type-Konzept entfernt.
Diffstat (limited to 'config/SQL/privs.sql')
-rw-r--r--config/SQL/privs.sql9
1 files changed, 4 insertions, 5 deletions
diff --git a/config/SQL/privs.sql b/config/SQL/privs.sql
index 77342a8..0c3605e 100644
--- a/config/SQL/privs.sql
+++ b/config/SQL/privs.sql
@@ -5,17 +5,16 @@
CREATE TABLE `privs` (
`id` bigint(20) NOT NULL auto_increment,
`name` varchar(255) NOT NULL,
- `type` enum('c','n','e') NOT NULL,
`readaccess` text NOT NULL,
`writeaccess` text NOT NULL,
PRIMARY KEY (`id`),
- UNIQUE KEY `name` (`name`,`type`)
+ UNIQUE KEY `name` (`name`)
) TYPE=MyISAM AUTO_INCREMENT=9 ;
--
-- Daten für Tabelle `privs`
--
-INSERT INTO `privs` (`id`, `name`, `type`, `readaccess`, `writeaccess`) VALUES (6, 'Home:Startseite', 'c', '9', '0');
-INSERT INTO `privs` (`id`, `name`, `type`, `readaccess`, `writeaccess`) VALUES (2, 'Test:LoremIpsum', 'c', '9', '0');
-INSERT INTO `privs` (`id`, `name`, `type`, `readaccess`, `writeaccess`) VALUES (3, 'Test:BBCode', 'c', '9', '0');
+INSERT INTO `privs` (`id`, `name`, `readaccess`, `writeaccess`) VALUES (6, 'Home:Startseite', '9', '0');
+INSERT INTO `privs` (`id`, `name`, `readaccess`, `writeaccess`) VALUES (2, 'Test:LoremIpsum', '9', '0');
+INSERT INTO `privs` (`id`, `name`, `readaccess`, `writeaccess`) VALUES (3, 'Test:BBCode', '9', '0');