0
我有教義組織用戶以下YAML架構:PHP Doctrine - YAML語法幫助。多對多關係的默認值?
Person:
tableName: people
columns:
id:
type: integer
primary: true
autoincrement: true
firstname:
type: string
notnull: true
lastname:
type: string
notnull: true
User:
inheritance:
extends: Person
type: column_aggregation
keyField: type
keyValue: 1
Userdetails:
columns:
person_id:
type: integer
primary: true
password:
type: string
notnull: true
relations:
User:
foreignType: one
local: person_id
onDelete: CASCADE
onUpdate: CASCADE
Group:
tableName: groups
columns:
id:
type: integer
primary: true
autoincrement: true
name:
type: string
notnull: true
UserGroup:
columns:
group_id:
type: integer
primary: true
person_id:
type: integer
primary: true
relations:
User:
foreignType: many
local: person_id
Group:
foreignType: many
基本上,誰是用戶的任何人將屬於一個或多個組。
默認情況下,有什麼方法可以將新用戶添加到特定的組?
任何意見讚賞。
感謝