phpgroupware-cvs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Phpgroupware-cvs] CVS: ccs/doc/examples/sql createdb.sql,NONE,1.1 dropt


From: Luca - De Whiskey's - De Vitis <address@hidden>
Subject: [Phpgroupware-cvs] CVS: ccs/doc/examples/sql createdb.sql,NONE,1.1 droptables.sql,NONE,1.1 testdata.sql,NONE,1.1 update.sql,NONE,1.1
Date: Mon, 10 Jun 2002 09:01:47 -0400

Update of /cvsroot/phpgroupware/ccs/doc/examples/sql
In directory subversions:/tmp/cvs-serv15597/ccs/doc/examples/sql

Added Files:
        createdb.sql droptables.sql testdata.sql update.sql 
Log Message:


Minor changes to directory structure:
- Moved old sql files to a more suitable place.
- Moved chora/docs to chora/doc


--- NEW FILE ---
CREATE SEQUENCE "seq_ccs_id";
CREATE SEQUENCE "seq_status_id";
CREATE SEQUENCE "seq_timecards_id";
CREATE SEQUENCE "seq_actions_id";
CREATE SEQUENCE "seq_department_id";
CREATE SEQUENCE 
        "seq_personnel_id" 
        start 2 increment 1 maxvalue 2147483647 minvalue 1  cache 1 ;

CREATE TABLE osims_ccs (
                "ccs" "int4" NOT NULL PRIMARY KEY 
DEFAULT(nextval('seq_ccs_id')),
                "owner"         "int4" NOT NULL,
                "subject"       varchar(255) NOT NULL,
                "detail"        text NOT NULL,
                "assignedto"    "int4" NOT NULL,
                "openedon"      "timestamp" default 'now()' NOT NULL, 
                "closedon"      "date",
                "closedby"      "int4",
                "status"        "int4" NOT NULL,
                "statuson"      "timestamp",
                "lastactionon"  "timestamp"
        );


CREATE TABLE "osims_statuses" (
                "id" "int4" NOT NULL PRIMARY KEY 
DEFAULT(nextval('seq_status_id')),
                "short" char(10) NOT NULL, 
                "name" varchar(20) NOT NULL,
                "active" varchar(1) default 'Y'
        );

CREATE TABLE "osims_timecards" (
                "id" "int4" NOT NULL PRIMARY KEY 
DEFAULT(nextval('seq_timecards_id')), 
                "ccs" "int4" NOT NULL, 
                "actionon" "date" NOT NULL, 
                "inputon" "timestamp" DEFAULT text 'now' NOT NULL, 
                "actionby" "int4" NOT NULL, 
                "status" "int4" NOT NULL, 
                "action" "int4" NOT NULL, 
                "summary" varchar(100) NOT NULL, 
                "description" varchar(1024)
        );

CREATE TABLE "osims_actions" (
                "id" "int4" NOT NULL PRIMARY KEY 
DEFAULT(nextval('seq_actions_id')), 
                "short" char(10) NOT NULL, 
                "name" varchar(20) NOT NULL,
                "active" varchar(1) default 'Y'
        );

CREATE TABLE "osims_personnel" (
                "id" "int4" NOT NULL PRIMARY KEY 
DEFAULT(nextval('seq_personnel_id')),
                "phpgwid" "int4" NOT NULL,
                "reportto" "int4", 
                "department" "int4", 
                "security" "int4", 
                "active" varchar(1) default 'Y'
        );

CREATE TABLE "osims_departments" (
                "id" "int4" NOT NULL PRIMARY KEY 
DEFAULT(nextval('seq_department_id')), 
                "short" char(10) NOT NULL, 
                "name" varchar(30) NOT NULL,
                "active" varchar(1) default 'Y'
        );

COPY "osims_actions" FROM stdin;
1       PH              Phone   Y
2       FAX             Fax     Y
3       DOC             Document        Y
4       TST             Testing Y
5       MTG             Meeting Y
6       IMP             Implementation  Y
7       CORR            Correction      Y
\.

COPY "osims_statuses" FROM stdin;
1       OP              Open    Y
2       CL              Closed  Y
3       DF              Deferred        Y
4       UA              Unassigned      Y
\.

COPY "osims_personnel" FROM stdin;
1       1       1       1       9       Y
\.


--- NEW FILE ---
drop table osims_ccs;
drop table osims_timecards;
drop table osims_actions;
drop table osims_statuses;
drop table osims_personnel;
drop table osims_departments;
drop sequence seq_ccs_id;
drop sequence seq_status_id;
drop sequence seq_timecards_id;
drop sequence seq_actions_id;
drop sequence seq_personnel_id;
drop sequence seq_department_id;


--- NEW FILE ---
INSERT into osims_documents (owner,title,summary,comment) VALUES(1,'Another 
Title','Some Summary','A comment');
INSERT into osims_documents (owner,title,summary,comment) VALUES(1,'Another 
different Title','Some other Summary','A new comment');
--- NEW FILE ---
CREATE SEQUENCE "seq_department_id";
CREATE TABLE "osims_departments" (
                "id" "int4" NOT NULL PRIMARY KEY 
DEFAULT(nextval('seq_department_id')), 
                "short" char(10) NOT NULL, 
                "name" varchar(30) NOT NULL,
                "active" varchar(1) default 'Y'
        );




GRANT all on osims_departments to phpgroupware;




reply via email to

[Prev in Thread] Current Thread [Next in Thread]