ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/COMP/DBS/Schema/RefDBLegacy/OracleFiles.sql
(Generate patch)

Comparing COMP/DBS/Schema/RefDBLegacy/OracleFiles.sql (file contents):
Revision 1.3 by lat, Mon Oct 10 20:19:48 2005 UTC vs.
Revision 1.4 by lat, Tue Oct 11 17:39:45 2005 UTC

# Line 1 | Line 1
1   -- ======================================================================
2 + create sequence seq_block_status;
3   create sequence seq_block;
4   create sequence seq_file_status;
5   create sequence seq_file_type;
# Line 11 | Line 12 | create table t_block_status
12     name                         varchar (1000)  not null,
13     created_at                   float           not null,
14     created_by                   integer         not null,
15 <   modified_at                  float           not null,
16 <   modified_by                  integer         not null);
15 >   modified_at                  float,
16 >   modified_by                  integer);
17  
18   create table t_block
19    (id                           integer         not null,
# Line 22 | Line 23 | create table t_block
23     bytes                        integer         not null,
24     created_at                   float           not null,
25     created_by                   integer         not null,
26 <   modified_at                  float           not null,
27 <   modified_by                  integer         not null);
26 >   modified_at                  float,
27 >   modified_by                  integer);
28  
29   create table t_file_status
30    (id                           integer         not null,
31     name                         varchar (1000)  not null,
32     created_at                   float           not null,
33     created_by                   integer         not null,
34 <   modified_at                  float           not null,
35 <   modified_by                  integer         not null);
34 >   modified_at                  float,
35 >   modified_by                  integer);
36  
37   create table t_file_type
38    (id                           integer         not null,
39     name                         varchar (1000)  not null,
40     created_at                   float           not null,
41     created_by                   integer         not null,
42 <   modified_at                  float           not null,
43 <   modified_by                  integer         not null);
42 >   modified_at                  float,
43 >   modified_by                  integer);
44  
45   create table t_file
46    (id                           integer         not null,
# Line 52 | Line 53 | create table t_file
53     inblock                      integer         not null,
54     created_at                   float           not null,
55     created_by                   integer         not null,
56 <   modified_at                  float           not null,
57 <   modified_by                  integer         not null);
56 >   modified_at                  float,
57 >   modified_by                  integer);
58  
59   create table t_evcoll_file
60    (id                           integer         not null,
# Line 61 | Line 62 | create table t_evcoll_file
62     fileid                       integer         not null,
63     created_at                   float           not null,
64     created_by                   integer         not null,
65 <   modified_at                  float           not null,
66 <   modified_by                  integer         not null);
65 >   modified_at                  float,
66 >   modified_by                  integer);
67  
68   -- ======================================================================
69   alter table t_block_status

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines