Changeset 4578
- Timestamp:
- 06/28/08 05:37:21 (6 months ago)
- Files:
-
- 1 modified
-
branches/0.11/manual/docs/en/schema-files.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/0.11/manual/docs/en/schema-files.txt
r4413 r4578 494 494 </code> 495 495 496 Class table inheritance. Read about more about [doc relations:inheritance:class-table-inheritance :index :name]497 498 <code type="yaml">499 ---500 Entity:501 columns:502 name: string(255)503 504 User:505 inheritance:506 extends: Entity507 type: class_table508 columns:509 username: string(255)510 password: string(255)511 age: integer(2)512 </code>513 514 496 Concrete inheritance. Read about more about [doc relations:inheritance:concrete-inheritance :index :name] 515 497