1
0
mirror of synced 2025-03-05 04:13:20 +03:00
doctrine2/tests/schema.yml
2007-09-13 19:06:04 +00:00

30 lines
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