我有以下数据库结构:
Account:
columns:
email: string(255)
name:
type: string(255)
UserRegistered:
columns:
email:
type: string(255)
email: true
notnull: true
unique: true
username:
type: string(255)
notnull: true
nospace: true
unique: true
minlength: 5
password:
type: string(255)
token: string(255)
inheritance:
extends: Account
type: concrete
UserOpenid:
columns:
openid: string(255)
openid_provider: string(255)
inheritance:
extends: Account
type: concrete
当我插入一个新的userregistered或useropenid记录时,我希望它创建一个userregistered记录以及一个帐户记录。
我是否误解了继承权/我是否滥用了继承权,或者我做了什么错事?