All pastes #2056981 Raw Edit

Anonymous

public text v1 · immutable
#2056981 ·published 2011-05-11 19:40 UTC
rendered paste body
#schema

Product:
  actAs:
    Timestampable: ~
  columns:
    id:             { type: integer(4), primary: true, autoincrement: true }
    name:           { type: string(255), notnull: true }
    price:          { type: float, default: 0 }
    extract:        { type: string(255) }
    content:        { type: clob }
    pic:            { type: string(255) }

      
ProductGallery:
  actAs:
    Timestampable: ~
  columns:
    id:             { type: integer(4), primary: true, autoincrement: true }
    product_id:     { type: integer(4), notnull: true  }
    title:          { type: string(255) }
    pic:            { type: string(255) }
  relations:
    Owner:
      class: Product
      local: product_id
      foreign: id
      onDelete: CASCADE