1
0
mirror of synced 2024-12-14 07:06:04 +03:00
doctrine2/tests/schema.xml

42 lines
1.2 KiB
XML
Raw Normal View History

<?xml version="1.0" encoding="ISO-8859-1" ?>
2007-09-14 01:32:40 +04:00
<schema>
<tables>
2007-09-14 02:39:52 +04:00
<user>
2007-09-14 01:32:40 +04:00
<name>user</name>
<class>User</class>
<columns>
<column>
<name>id</name>
<type>integer</type>
<notnull>true</notnull>
<autoincrement>true</autoincrement>
</column>
<column>
<name>username</name>
<type>string</type>
<length>20</length>
<notnull>true</notnull>
</column>
</columns>
2007-09-14 02:39:52 +04:00
</user>
2007-09-14 02:39:52 +04:00
<group>
2007-09-14 01:32:40 +04:00
<name>group</name>
<class>Group</class>
<columns>
<column>
<name>id</name>
<type>integer</type>
<notnull>true</notnull>
<autoincrement>true</autoincrement>
</column>
<column>
<name>name</name>
<type>string</type>
<length>20</length>
<notnull>true</notnull>
</column>
</columns>
2007-09-14 02:39:52 +04:00
</group>
2007-09-14 01:32:40 +04:00
</tables>
</schema>