forked from extern/egroupware
Fixed a few white space errors header() and setup_header(), fixed the notes tables and reworked the default applications so it will be easier to make the phpgroupware and phpgroupware plus packages
This commit is contained in:
@ -252,12 +252,11 @@
|
||||
$db->query($sql);
|
||||
|
||||
$sql = "CREATE TABLE notes (
|
||||
accountid int(11),
|
||||
date int(11),
|
||||
note text,
|
||||
noteid int(20) auto_increment,
|
||||
PRIMARY KEY (noteid)
|
||||
)";
|
||||
note_id serial,
|
||||
note_owner int,
|
||||
note_date int,
|
||||
note_content text
|
||||
)";
|
||||
$db->query($sql);
|
||||
|
||||
$currentver = "0.9.3";
|
||||
|
Reference in New Issue
Block a user