Files
alfresco-community-repo/source/java/org/alfresco/repo/activities/hibernate/Activities.hbm.xml
Derek Hulley f74699749b Merged V3.0 to HEAD
11410: Activity Service - iBatis mapping files for MS SQL Server (using AlfrescoSQLServerDialect)
          Can be Enterprised when dual build is set up
   11414: Fix for missing servlet reference in repo web.xml
   11415: Activity Service - iBatis mapping files for new Oracle dialects (using AlfrescoOracle10gDialect or AlfrescoOracle9iDialect)
          Can be Entperprised when dual build is up
   11424: Remove conflicting java mail libraries.
          NOTE: Might affect 'CMIS web service implementation'
   11426: Activity Service - use lower-case columns
   11428: ETHREEOH-300: Site contributor can not delete his own blog posts
   11431: Removed tutorial from Guest home
   11432: ETHREEOH-198: SiteService is not MT enabled
   11440: Close all ScrollableResults in try{} finally{}
   11442: Fix for ETHREEOH-268, ETHREEOH-269, ETHREEOH-431, ETHREEOH-438, ETHREEOH-456, ETHREEOH-468, ETHREEOH-532
   11443: Update to JSF client Help URL
   11444: Build fix
   11447: MT - fix ETHREEOH-530
   11448: Fix for ETHREEOH-424: Edit Web Content: dojo.data.fromrfc3339 is not a function
   11449: Fix for ETHREEOH-218: DM forms should be disabled


git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@12427 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
2008-12-17 06:49:28 +00:00

71 lines
3.3 KiB
XML

<?xml version='1.0' encoding='UTF-8'?>
<!DOCTYPE hibernate-mapping PUBLIC
'-//Hibernate/Hibernate Mapping DTD 3.0//EN'
'http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd'>
<!-- Hibernate mapping is used to auto-generate Activity tables (based on configured Hibernate Dialect) -->
<hibernate-mapping>
<class
name="org.alfresco.repo.activities.post.ActivityPostDAO"
table="alf_activity_post" >
<!-- auto-generated ID -->
<id name="id" column="sequence_id" type="long">
<generator class="native"/>
</id>
<property name="postDate" column="post_date" not-null="true" type="timestamp"/>
<property name="status" column="status" not-null="true" type="string" length="10"/>
<property name="activityData" column="activity_data" not-null="true" type="string" length="4000"/>
<property name="userId" column="post_user_id" not-null="true" type="string" length="255"/>
<property name="jobTaskNode" column="job_task_node" not-null="true" type="integer"/>
<property name="siteNetwork" column="site_network" type="string" length="255"/>
<property name="appTool" column="app_tool" type="string" length="36"/>
<property name="activityType" column="activity_type" not-null="true" type="string" length="255"/>
<property name="lastModified" column="last_modified" not-null="true" type="timestamp"/>
</class>
<class
name="org.alfresco.repo.activities.feed.ActivityFeedDAO"
table="alf_activity_feed" >
<!-- auto-generated ID -->
<id name="id" column="id" type="long">
<generator class="native"/>
</id>
<property name="postId" column="post_id" type="long"/>
<property name="postDate" column="post_date" not-null="true" type="timestamp"/>
<property name="activitySummary" column="activity_summary" type="string" length="4000"/>
<property name="feedUserId" column="feed_user_id" type="string" length="255"/>
<property name="activityType" column="activity_type" not-null="true" type="string" length="255"/>
<property name="activitySummaryFormat" column="activity_format" type="string" length="10"/>
<property name="siteNetwork" column="site_network" type="string" length="255"/>
<property name="appTool" column="app_tool" type="string" length="36"/>
<property name="postUserId" column="post_user_id" not-null="true" type="string" length="255"/>
<property name="feedDate" column="feed_date" not-null="true" type="timestamp"/>
</class>
<class
name="org.alfresco.repo.activities.feed.control.FeedControlDAO"
table="alf_activity_feed_control" >
<!-- auto-generated ID -->
<id name="id" column="id" type="long">
<generator class="native"/>
</id>
<property name="feedUserId" column="feed_user_id" not-null="true" type="string" length="255"/>
<property name="siteNetwork" column="site_network" type="string" length="255"/>
<property name="appTool" column="app_tool" type="string" length="36"/>
<property name="lastModified" column="last_modified" not-null="true" type="timestamp"/>
</class>
</hibernate-mapping>