/[omni_gantt]/gantt.sql
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Annotation of /gantt.sql

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1.1 - (hide annotations)
Wed Sep 11 16:09:47 2002 UTC (21 years, 6 months ago) by dpavlin
Branch: MAIN
Branch point for: DbP
Initial revision

1 dpavlin 1.1 drop table gantt;
2    
3     create table gantt (
4     start datetime default now(),
5     finish datetime default now(),
6     sessionid varchar(20) primary key,
7     type varchar(80) not null,
8     status varchar(80) not null,
9     user_group_host varchar(80) not null,
10     specification varchar(80) not null
11     );
12    
13     create index ind_sessionid on gantt ( sessionid );
14     create index ind_type on gantt ( type );
15     create index ind_status on gantt ( status );
16     create index ind_user on gantt ( user_group_host );
17     create index ind_specification on gantt ( specification );
18    

  ViewVC Help
Powered by ViewVC 1.1.26