[Refdb-devel] CVS: refdb/src dbfncs.c,1.10,1.11
Status: Beta
Brought to you by:
mhoenicka
From: Markus H. <mho...@us...> - 2003-12-21 23:08:03
|
Update of /cvsroot/refdb/refdb/src In directory sc8-pr-cvs1:/tmp/cvs-serv937/src Modified Files: dbfncs.c Log Message: added content_type and content_xmllang fields to t_note Index: dbfncs.c =================================================================== RCS file: /cvsroot/refdb/refdb/src/dbfncs.c,v retrieving revision 1.10 retrieving revision 1.11 diff -u -U2 -r1.10 -r1.11 --- dbfncs.c 29 Oct 2003 22:09:23 -0000 1.10 +++ dbfncs.c 21 Dec 2003 23:07:59 -0000 1.11 @@ -250,5 +250,7 @@ note_key VARCHAR(255), \ note_title VARCHAR(255), \ - note_note BLOB, \ + note_content BLOB, \ + note_content_type VARCHAR(255), \ + note_content_xmllang VARCHAR(255), \ note_user_id INT, \ note_date DATE, \ @@ -559,5 +561,7 @@ note_key VARCHAR(255) UNIQUE, \ note_title VARCHAR(255), \ - note_note TEXT, \ + note_content TEXT, \ + note_content_type VARCHAR(255), \ + note_content_xmllang VARCHAR(255), \ note_user_id BIGINT, \ note_date DATE, \ @@ -1020,7 +1024,9 @@ note_key TEXT, \ note_title TEXT, \ + note_content_type TEXT, \ + note_content_xmllang TEXT, \ note_user_id INTEGER, \ note_date DATE, \ - note_note TEXT)"); + note_content TEXT)"); |