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

30 lines
No EOL
518 B
YAML

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