root/trunk/examples/database/TestSchema.schema
| Revision 42, 251 bytes (checked in by aarti_pl, 4 months ago) |
|---|
| Line | |
|---|---|
| 1 | Table (AUTHORS) { |
| 2 | long (ID) PrimaryKey AutoIncrement |
| 3 | string (FIRSTNAME, 2000) |
| 4 | string (SURNAME, 2000) |
| 5 | } |
| 6 | |
| 7 | Table (BOOKS) { |
| 8 | long (ID) PrimaryKey AutoIncrement |
| 9 | long (AUTHOR_ID) Reference(AUTHORS) |
| 10 | string (TITLE, 2000) |
| 11 | } |
Note: See TracBrowser for help on using the browser.
