Subversion Repositories bacoAlunos

Compare Revisions

Ignore whitespace Rev 1586 → Rev 1616

/branches/v3/impl/src/hbm/pt/estgp/estgweb/domain/PageContent.hbm.xml
37,6 → 37,10
<column name="description" sql-type="TEXT"/>
</property>
<property name="accessPolicyClass" type="string"/>
<property name="slug" type="string"/>
<property name="path" type="string" unique="true">
<column name="path" sql-type="TEXT, INDEX(path(512))"/>
</property>
<many-to-one name="owner" class="pt.estgp.estgweb.domain.GenericUser" lazy="proxy" outer-join="false"/>
<many-to-one name="parent" class="pt.estgp.estgweb.domain.PageSection" lazy="proxy" outer-join="false">
<column name="parentId"/>
46,7 → 50,10
<subclass name="pt.estgp.estgweb.domain.PageSection" abstract="true">
<meta attribute="extends">pt.estgp.estgweb.domain.PageContentImpl</meta>
<meta attribute="scope-class">public abstract</meta>
<property name="topLayoutSection" type="boolean"/>
<property name="topLayoutSection" type="boolean">
<column name="topLayoutSection" default="true"/>
</property>
 
<list name="childs" cascade="none" lazy="true">
<key column="parentId"/>
<index column="i"/>