Changeset 773 for trunk/app/config
- Timestamp:
- 09/22/08 23:22:18 (2 months ago)
- Location:
- trunk/app/config/sql/postgresql
- Files:
-
- 2 modified
-
karamelo.sql (modified) (3 diffs)
-
results.sql (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/app/config/sql/postgresql/karamelo.sql
r688 r773 1 1 -- --- 2 2 -- KARAMELO TABLES --- Chipotle Software 2002-2008 3 -- ---4 -- Name: groups; Type: TABLE; Schema: public; Owner: www-data; Tablespace:5 6 -- College information7 3 8 4 \i ./colleges.sql … … 70 66 \i ./results.sql 71 67 \i ./participations.sql 68 \i ./chats.sql 72 69 73 70 \i ./shares.sql 74 71 \i ./metadatas.sql 72 -- ** School resource (Books, CDs, DVDs, Magazines, etc) ** 75 73 \i ./resources.sql 76 74 … … 85 83 \i ./uploads.sql 86 84 \i ./reports.sql 87 \i ./comments_lessons.sql 85 -- ** Comments in Lesson model ** 88 86 \i ./annotations.sql -
trunk/app/config/sql/postgresql/results.sql
r745 r773 6 6 test_id int NOT NULL REFERENCES tests(id) ON DELETE CASCADE, 7 7 vclassroom_id int NOT NULL REFERENCES vclassrooms(id) ON DELETE CASCADE, 8 created timestamp(0) with time zone DEFAULT now() NOT NULL 8 created timestamp(0) with time zone DEFAULT now() NOT NULL, 9 9 PRIMARY KEY (user_id, test_id, vclassroom_id, question_id) 10 10 );
