Skip to content

Commit 6fcc8c5

Browse files
committed
Merge pull request #151 from aar0nr/xml-schema
Add xml schema definition
2 parents e251191 + 151b56f commit 6fcc8c5

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
<?xml version="1.0" encoding="UTF-8" ?>
2+
<xsd:schema xmlns="http://symfony.com/schema/dic/doctrine/migrations"
3+
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
4+
targetNamespace="http://symfony.com/schema/dic/doctrine/migrations"
5+
elementFormDefault="qualified">
6+
7+
<xsd:element name="config">
8+
<xsd:complexType>
9+
<xsd:attribute name="dir_name" type="xsd:string" />
10+
<xsd:attribute name="namespace" type="xsd:string" />
11+
<xsd:attribute name="table_name" type="xsd:string" />
12+
<xsd:attribute name="name" type="xsd:string" />
13+
</xsd:complexType>
14+
</xsd:element>
15+
</xsd:schema>

0 commit comments

Comments
 (0)