antville/code/Root/type.properties
Robert Gaggl f8db009bff changed type.properties according to new database-schema:
- 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/)
2002-06-26 16:03:59 +00:00

23 lines
No EOL
621 B
Properties

_children = collection(site)
_children.foreign = SITE_ID
_children.accessname = SITE_ALIAS
_children.order = SITE_LASTUPDATE desc
public = collection(site)
public.filter = SITE_ISONLINE > 0 AND SITE_ISBLOCKED = 0
public.order = SITE_TITLE asc
users = collection(user)
users.accessname=USER_NAME
members = mountpoint(membermgr)
storiesByID = collection(story)
storiesByID.filter = TEXT_PROTOTYPE = 'story' AND TEXT_ISONLINE > 0
images = collection(image)
images.accessname = IMAGE_ALIAS
images.filter = IMAGE_F_SITE is null and IMAGE_F_IMAGE_PARENT is null
# mountpoint for system manager
manage = mountpoint(sysmgr)