I have in schema:

Promotion:
  columns:
    id_promotion:
      type: integer(1)
      primary: true
      autoincrement: true
    id_city:
      type: integer(4)
      notnull: true
    start_travel_date:
      type: date
      notnull: true
    price:
      type: decimal
      notnull: true
    description:
      type: string(200)
      notnull: true
  relations:
    City:
      class: City
      local: id_city
      foreign: id_city



Travel agency can have max 10 promotions - max 10 rows in table
Promotion. Do You know is it possible to edit all promotions on one
form on one site ?? Is it possible ??

--

You received this message because you are subscribed to the Google Groups 
"symfony users" group.
To post to this group, send email to symfony-us...@googlegroups.com.
To unsubscribe from this group, send email to 
symfony-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/symfony-users?hl=en.


Reply via email to