# HG changeset patch # User Sandrine Ribeau # Date 1239642618 25200 # Node ID 31e4c8d30e5d7b2afde819dc233e4d90440aa304 # Parent 2452e660aea6f8ee4970f60474d8e279744adf97 [doc] Adds how to add attribute in DB. diff -r 2452e660aea6 -r 31e4c8d30e5d doc/book/en/D010-faq.en.txt --- a/doc/book/en/D010-faq.en.txt Fri Apr 10 09:29:33 2009 -0700 +++ b/doc/book/en/D010-faq.en.txt Mon Apr 13 10:10:18 2009 -0700 @@ -145,9 +145,15 @@ It depends on what has been modified in the schema. - * Update of a non final relation. + * Update of an attribute permissions and properties: + ``synchronize_eschema('MyEntity')``. - * Update of a final relation. + * Update of a relation permissions and properties: + ``synchronize_rschema('MyRelation')``. + + * Add an attribute: ``add_attribute('MyEntityType', 'myattr')``. + + * Add a relation: ``add_relation_definition('SubjRelation', 'MyRelation', 'ObjRelation')``. * How to create an anonymous user?