renamed table notes -> phpgw_notes

This commit is contained in:
bettina
2001-02-22 16:23:00 +00:00
parent bdac59038b
commit c51f21db61
6 changed files with 55 additions and 14 deletions

View File

@ -273,10 +273,11 @@
)";
$phpgw_setup->db->query($sql);
$sql = "CREATE TABLE notes (
$sql = "CREATE TABLE phpgw_notes (
note_id int(20) NOT NULL auto_increment,
note_owner int(11),
note_date int(11),
note_category int(9),
note_content text,
PRIMARY KEY (note_id)
)";