summaryrefslogtreecommitdiffstats
path: root/config/SQL/privs.sql
blob: 0c3605e00b930106b6c7b89c141205e972780d5b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
-- 
-- Tabellenstruktur für Tabelle `privs`
-- 

CREATE TABLE `privs` (
  `id` bigint(20) NOT NULL auto_increment,
  `name` varchar(255) NOT NULL,
  `readaccess` text NOT NULL,
  `writeaccess` text NOT NULL,
  PRIMARY KEY  (`id`),
  UNIQUE KEY `name` (`name`)
) TYPE=MyISAM  AUTO_INCREMENT=9 ;

-- 
-- Daten für Tabelle `privs`
-- 

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');