mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-08-10 00:37:54 +02:00
added new notes application. It still needs some work in moving to our db class and using out link function, but it works for mysql users
This commit is contained in:
@ -278,7 +278,17 @@
|
||||
PRIMARY KEY (lang_id)
|
||||
)";
|
||||
$db->query($sql);
|
||||
|
||||
|
||||
$sql = "CREATE TABLE notes (
|
||||
accountid int(11),
|
||||
date int(11),
|
||||
note text,
|
||||
noteid int(20) auto_increment,
|
||||
PRIMARY KEY (noteid)
|
||||
)";
|
||||
$db->query($sql);
|
||||
$db->query("insert into applications (app_name, app_title, app_enabled, app_order, app_tables, app_version) values ('notes', 'Notes', 0, 13, NULL, '".$phpgw_info["server"]["version"]."')");
|
||||
|
||||
$currentver = "0.9.3";
|
||||
update_version_table();
|
||||
?>
|
||||
|
Reference in New Issue
Block a user