1
0
mirror of https://github.com/VCMP-SqMod/SqMod.git synced 2025-06-19 00:27:13 +02:00
Files
SqMod/vendor/POCO/ActiveRecord/testsuite/ORM.xml
Sandu Liviu Catalin 7a3d92d1d1 Update POCO to 1.11.0
2021-08-22 18:07:06 +03:00

16 lines
534 B
XML

<project namespace="ORM">
<class name="Employee" table="employees">
<property name="id" type="uuid"/>
<property name="name" type="string"/>
<property name="ssn" type="string"/>
<property name="role" type="int16" references="Role"/>
<property name="manager" type="uuid" references="Employee" cardinality="?"/>
</class>
<class name="Role" table="roles" autoIncrementID="true">
<property name="id" type="int16"/>
<property name="name" type="string"/>
<property name="description" type="string"/>
</class>
</project>