source: trunk/expressoCalendar/setup/.goutputstream-CWJA3V @ 5341

Revision 5341, 1.4 KB checked in by wmerlotto, 12 years ago (diff)

Ticket #2434 - Commit inicial do novo módulo de agenda do Expresso - expressoCalendar

Line 
1<?php
2  /**************************************************************************\
3  * eGroupWare - Setup                                                       *
4  * http://www.egroupware.org                                              *
5  * --------------------------------------------                             *
6  *  This program is free software; you can redistribute it and/or modify it *
7  *  under the terms of the GNU General Public License as published by the   *
8  *  Free Software Foundation; either version 2 of the License, or (at your  *
9  *  option) any later version.                                              *
10  \**************************************************************************/
11
12
13//      $oProc->query("DELETE FROM phpgw_news");
14        $oProc->query(
15                    CREATE TABLE calendar_teste
16                    (
17                      id integer,
18                      email_user character varying(100),
19                      configuration_type character varying(30) NOT NULL,
20                      email_max_recipient integer DEFAULT 0,
21                      email_user_type character varying(1),
22                      email_quota integer,
23                      email_recipient character varying(50),
24                      CONSTRAINT calendar_teste PRIMARY KEY (id)
25                    )
26                    WITH (
27                      OIDS=TRUE
28                    );
29       
30                );
31?>
Note: See TracBrowser for help on using the repository browser.