1
0
Fork 0
mirror of synced 2025-04-02 21:06:18 +03:00
doctrine2/tests/schema.yml
2007-09-13 21:32:40 +00:00

31 lines
No EOL
576 B
YAML

---
schema:
tables:
user:
name: user
class: User
columns:
id:
name: id
type: integer
notnull: true
autoincrement: true
username:
name: username
type: string
length: 20
notnull: true
group:
name: group
class: Group
columns:
id:
name: id
type: integer
notnull: true
autoincrement: true
name:
name: name
type: string
length: 20
notnull: true