]> err.no Git - scalable-opengroupware.org/blob - SOGo/OGoContentStore/sql/testcontact-agenor-test-contact.psql
47274d14b65ceffdf96c02ca4251407523b807f5
[scalable-opengroupware.org] / SOGo / OGoContentStore / sql / testcontact-agenor-test-contact.psql
1 --
2 -- (C) 2004 SKYRIX Software AG
3 --
4
5 DELETE FROM SOGo_test_contacts_blob
6   WHERE c_name = 'contact_donald';
7 DELETE FROM SOGo_test_contacts_quick
8   WHERE c_name = 'contact_donald';
9
10 INSERT INTO SOGo_test_contacts_blob
11   ( c_name, c_creationdate, c_lastmodified, c_version, c_content )
12 VALUES (
13   'contact_donald',
14   928383,
15   928383,
16   1,
17   '{ 
18      givenName="Donald"; cn="Donald Duck"; sn="Duck"; 
19      l="Entenhausen";
20      mail="dd@entenhausen.com";
21      o="Geldspeicher AG";
22      ou="Support";
23      telephoneNumber="0190-1234567";
24    }'
25 );
26
27 INSERT INTO SOGo_test_contacts_quick
28   ( c_name, givenname, cn, sn, l, mail, o, ou, telephoneNumber )
29 VALUES (
30   'contact_donald', 'Donald', 'Donald Duck', 'Duck', 'Entenhausen',
31   'dd@entenhausen.com', 'Geldspeicher AG', 'Support',
32   '0190-1234567'
33 );