vgquotes/Src/VideoGameQuotes.Api/Mappings/QuoteFlag.hbm.xml
2011-02-09 00:05:32 +00:00

16 lines
677 B
XML

<?xml version="1.0" encoding="utf-8"?>
<hibernate-mapping xmlns="urn:nhibernate-mapping-2.2" assembly="VideoGameQuotes.Api" namespace="VideoGameQuotes.Api">
<class name="QuoteFlag" table="quote_flag">
<id column="quote_flag_id" name="Id" type="int">
<generator class="identity" />
</id>
<property name="Comment" column="flag_comment" not-null="false" length="1024" />
<property name="Created" column="created" not-null="true" />
<many-to-one name="User" column="user_id" not-null="true" foreign-key="fk_flag_user"/>
<many-to-one name="Quote" column="quote_id" not-null="true" foreign-key="fk_flag_quote" />
</class>
</hibernate-mapping>