Skip to content

Instantly share code, notes, and snippets.

@aramirez-es
Created September 29, 2010 16:13
Show Gist options
  • Save aramirez-es/603031 to your computer and use it in GitHub Desktop.
Save aramirez-es/603031 to your computer and use it in GitHub Desktop.
# config/doctrine/schema.yml
Category:
columns:
id:
type: integer(11)
notnull: true
autoincrement: true
primary: true
unsigned: true
name:
type: string(255)
Item:
columns:
id:
type: integer(11)
notnull: true
autoincrement: true
primary: true
unsigned: true
category_id:
type: integer(11)
notnull: true
unsigned: true
name:
type: string(255)
relations:
Category:
local: category_id
foreign: id
type: one
foreignAlias: Items
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment