mirror of
https://github.com/opensim/opensim.git
synced 2026-05-20 15:25:47 +08:00
properties as before - prefix private variables with m_ in AssetBase.cs - related to Mantis #3122, as mentioned in https://lists.berlios.de/pipermail/opensim-dev/2009-February/005088.html - all services will likely need to be upgraded after this commit
15 lines
761 B
XML
15 lines
761 B
XML
<?xml version="1.0" encoding="utf-8" ?>
|
|
<hibernate-mapping xmlns="urn:nhibernate-mapping-2.2">
|
|
<class name="OpenSim.Framework.AssetBase, OpenSim.Framework" table="Assets" lazy="false">
|
|
<id name="FullID" column="ID" type="OpenSim.Data.NHibernate.UUIDUserType, OpenSim.Data.NHibernate">
|
|
<generator class="assigned" />
|
|
</id>
|
|
<property name="Type" type="OpenSim.Data.NHibernate.SByteType, OpenSim.Data.NHibernate" />
|
|
<property name="Name" type="String" length="64" />
|
|
<property name="Description" type="String" length="64" />
|
|
<property name="Local" type="boolean" />
|
|
<property name="Temporary" type="boolean" />
|
|
<property name="Data" type="binary" />
|
|
</class>
|
|
</hibernate-mapping>
|