| -- ------------------------------------------------------------------------- ----                                                                           --
 --   Title: repositories_t.sql                                               --
 --  Author: Steve Roach                                                      --
 --    Date: 23-AUG-2006                                                      --
 -- Version: 01.00                                                            --
 --                                                                           --
 -- Description: Create table REPOSITORIES.                                   --
 --                                                                           --
 -- History:                                                                  --
 --                                                                           --
 -- Date      Ver   Author Description                                        --
 -- --------- ----- ------ -------------------------------------------------- --
 -- 23-AUG-06 01.00 SRR    First release                                      --
 --                                                                           --
 -- ------------------------------------------------------------------------- --
 
 DROP TABLE repositories CASCADE CONSTRAINTS
 /
 
 CREATE TABLE repositories
 (
 name               VARCHAR2(50)        NOT NULL
 )
 /
 
 COMMENT ON TABLE repositories IS 'Contains repository references.'
 /
 
 COMMENT ON COLUMN repositories.name IS 'Name of repository.'
 /
 
 
 | 
0 Comments:
Post a Comment
<< Home