mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-07 16:44:07 +01:00
27 lines
1.5 KiB
Plaintext
27 lines
1.5 KiB
Plaintext
|
# $Id$
|
||
|
|
||
|
CREATE TABLE applications (
|
||
|
app_name varchar(25) NOT NULL,
|
||
|
app_title varchar(50),
|
||
|
app_enabled int,
|
||
|
UNIQUE app_name (app_name)
|
||
|
);
|
||
|
|
||
|
insert into applications (app_name, app_title, app_enabled) values ('admin', 'Administration', 1);
|
||
|
insert into applications (app_name, app_title, app_enabled) values ('tts', 'Trouble Ticket System', 1);
|
||
|
insert into applications (app_name, app_title, app_enabled) values ('inv', 'Inventory', 1);
|
||
|
insert into applications (app_name, app_title, app_enabled) values ('chat', 'Chat', 1);
|
||
|
insert into applications (app_name, app_title, app_enabled) values ('headlines', 'Headlines', 1);
|
||
|
insert into applications (app_name, app_title, app_enabled) values ('filemanager', 'File manager', 1);
|
||
|
insert into applications (app_name, app_title, app_enabled) values ('ftp', 'FTP', 1);
|
||
|
insert into applications (app_name, app_title, app_enabled) values ('addressbook', 'Address Book', 1);
|
||
|
insert into applications (app_name, app_title, app_enabled) values ('todo', 'ToDo List', 1);
|
||
|
insert into applications (app_name, app_title, app_enabled) values ('calendar', 'Calendar', 1);
|
||
|
insert into applications (app_name, app_title, app_enabled) values ('email', 'Email', 1);
|
||
|
insert into applications (app_name, app_title, app_enabled) values ('nntp', 'NNTP', 1);
|
||
|
insert into applications (app_name, app_title, app_enabled) values ('bookmarks', 'Bookmarks', 0);
|
||
|
insert into applications (app_name, app_title, app_enabled) values ('cron_apps', 'cron_apps', 0);
|
||
|
insert into applications (app_name, app_title, app_enabled) values ('napster', 'Napster', 0);
|
||
|
|
||
|
|