17 lines
751 B
XML
17 lines
751 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" />
|
|
<property name="Type" column="flag_type" not-null="true" type="int" />
|
|
|
|
<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> |