mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-08-15 19:24:21 +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:
@ -251,6 +251,14 @@
|
||||
)";
|
||||
$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);
|
||||
|
||||
$currentver = "0.9.3";
|
||||
update_version_table();
|
||||
|
Reference in New Issue
Block a user