You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
236 B
MySQL
14 lines
236 B
MySQL
13 years ago
|
/* Update für #27, iCal-Export */
|
||
|
ALTER TABLE `User` ADD `ical_key` VARCHAR( 32 ) NOT NULL ,
|
||
|
ADD UNIQUE (
|
||
|
`ical_key`
|
||
|
);
|
||
|
|
||
|
INSERT INTO `engelsystem`.`Privileges` (
|
||
|
`id` ,
|
||
|
`name` ,
|
||
|
`desc`
|
||
|
)
|
||
|
VALUES (
|
||
|
NULL , 'ical', 'iCal Schicht Export'
|
||
|
);
|