Show
Ignore:
Timestamp:
07/24/08 03:55:37 (6 months ago)
Author:
guilhermeblanco
Message:

fixes #1234
Ticket: 1234

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • branches/0.11/tests/schema.yml

    r4308 r4710  
    148148      name: test_col as test_col_alias 
    149149      type: string(255) 
     150 
     151# App-level cascade delete 
     152AppCascadeDeleteTest: 
     153  columns:  
     154    id:  
     155      primary: true 
     156      autoincrement: true 
     157      type: integer(4) 
     158    alias_id: 
     159      type: integer(4) 
     160 
     161  relations: 
     162    AliasTest: 
     163      type: one 
     164      local: alias_id 
     165      foreign: id 
     166      cascade: [delete]