Index: openacs-4/packages/dotlrn/sql/oracle/dotlrn-clubs-create.sql =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/dotlrn/sql/oracle/Attic/dotlrn-clubs-create.sql,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ openacs-4/packages/dotlrn/sql/oracle/dotlrn-clubs-create.sql 25 Sep 2001 19:01:42 -0000 1.1 @@ -0,0 +1,19 @@ + +-- +-- The DotLRN basic system +-- copyright 2001, OpenForce, Inc. +-- distributed under the GNU GPL v2 +-- +-- for Oracle 8/8i. (We're guessing 9i works, too). +-- +-- ben@openforce.net +-- started August 18th, 2001 +-- + +create table dotlrn_clubs ( + club_id constraint dotlrn_club_id_fk + references dotlrn_communities(community_id) + constraint dotlrn_club_id_pk + primary key +); +