- all tables are prefixed with AV_ - WEBLOG was renamed to AV_SITE - GOODIE was renamed to AV_FILE - all columns are prefixed with the table-name (without table-prefix) - foreign keys follow a specific naming-convention (for details see http://project.antville.org/topics/feature+requests+and+proposals/69427/)
22 lines
499 B
Properties
22 lines
499 B
Properties
_db = antville
|
|
_table = AV_MEMBERSHIP
|
|
|
|
_parent = site.members
|
|
_id = MEMBERSHIP_ID
|
|
|
|
# object references
|
|
site = object (site)
|
|
site.local = MEMBERSHIP_F_SITE
|
|
site.foreign = SITE_ID
|
|
user = object (user)
|
|
user.local = MEMBERSHIP_F_USER
|
|
user.foreign = USER_ID
|
|
modifier = object (user)
|
|
modifier.local = MEMBERSHIP_F_USER_MODIFIER
|
|
modifier.foreign = USER_ID
|
|
|
|
# primitive properties
|
|
username = MEMBERSHIP_USERNAME
|
|
level = MEMBERSHIP_LEVEL
|
|
createtime = MEMBERSHIP_CREATETIME
|
|
modifytime = MEMBERSHIP_MODIFYTIME
|