Changeset 42 for trunk/examples/database/TestSchema.schema
- Timestamp:
- 06/23/08 17:54:30 (4 years ago)
- Files:
-
- trunk/examples/database/TestSchema.schema (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/examples/database/TestSchema.schema
r38 r42 1 Table ( BOOK) {2 long (ID) PrimaryKey AutoIncrement3 string (AUTHOR, 2000)4 string ( TITLE, 2000)1 Table (AUTHORS) { 2 long (ID) PrimaryKey AutoIncrement 3 string (FIRSTNAME, 2000) 4 string (SURNAME, 2000) 5 5 } 6 6 7 Table (BO RROW_RECORD) {7 Table (BOOKS) { 8 8 long (ID) PrimaryKey AutoIncrement 9 int (BOOK_ID) Reference(BOOK) 10 string (PERSON, 2000) Index 11 long (BORROWED) Index 12 long (RETURNED) Index 9 long (AUTHOR_ID) Reference(AUTHORS) 10 string (TITLE, 2000) 13 11 }
