我正在尝试建立局域网的域名服务器。我的路由器有一个来自ISP的域名--类似于foobar21.verizon.com。
我想指定我的本地计算机名称,如gizmo,gadget,wizbob等。
在bind(9)配置文件中,我从预置文件中得到以下注释:
# This is the zone definition. replace example.com with your domain name
zone "local-network" IN {
type master;
file "/etc/bind/zones/local-networ
我的域名是这样的:
class Team {
hasOne [leader: Person]
hasMany [member: Person]
}
class Person {
belongsTo [team: Team]
}
但是在生成表时,team表中没有像leader_id这样的列。因此,领导关系不是持久的。
我该怎么解决它呢?