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:
seek3r
2000-11-17 16:34:27 +00:00
parent d46eb96a9c
commit 77d5d5a46c
8 changed files with 51 additions and 4 deletions

View File

@ -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();
?>